Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 15cdb7fd94d8bc0504cf87879755803c08e8f1f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>

<!--
  Copyright (c) 2011 Mia-Software.
  
  All rights reserved. This program and the accompanying materials
  are made available under the terms of the Eclipse Public License 2.0
  which accompanies this distribution, and is available at
  https://www.eclipse.org/legal/epl-2.0/

  SPDX-License-Identifier: EPL-2.0
 
  Contributors:
  	Gregoire Dupe (Mia-Software) - Bug 361794 - [Restructuring] New customization meta-model
       Gregoire Dupe (Mia-Software) - Bug 369987 - [Restructuring][Table] Switch to the new customization and facet framework
       Gregoire Dupe (Mia-Software) - Bug 373078 - API Cleaning 
-->

<plugin>

   <extension point="org.eclipse.ui.newWizards">
   	 <!-- @generated NOT -->
      <wizard
            id="org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.presentation.CustomModelWizardID"
            name="%_UI_CustomModelWizard_label"
            class="org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.presentation.CustomModelWizard"
            category="org.eclipse.papyrus.wizards.category/org.eclipse.papyrus.wizards.addons.category"
            icon="icons/full/obj16/CustomModelFile.gif">
         <description>%_UI_CustomModelWizard_description</description>
         <selection class="org.eclipse.core.resources.IResource"/>
      </wizard>
   </extension>

   <extension point="org.eclipse.ui.editors">
      <editor
            id="org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.presentation.CustomEditorID"
            name="%_UI_CustomEditor_label"
            icon="icons/full/obj16/CustomModelFile.gif"
            extensions="custom"
            class="org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.presentation.CustomEditor"
            contributorClass="org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.presentation.CustomActionBarContributor">
      </editor>
   </extension>

</plugin>

Back to the top