Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a82901cf8e7b103f4b2e1270917fdcd7f8c4862e (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension-point id="org.eclipse.papyrus.properties.generation.generator" name="%extension-point.generator" schema="schema/org.eclipse.papyrus.properties.generation.generator.exsd"/>
   <extension-point id="org.eclipse.papyrus.properties.generation.layout" name="%extension-point.layoutgenerator" schema="schema/org.eclipse.papyrus.properties.generation.layout.exsd"/>
   <extension
         point="org.eclipse.ui.newWizards">
      <wizard
            category="org.eclipse.papyrus.wizards.category"
            class="org.eclipse.papyrus.properties.generation.wizard.CreateContextWizard"
            icon="icons/new_customization.png"
            id="org.eclipse.papyrus.properties.generation.wizard"
            name="%generation.wizard.name">
      </wizard>
   </extension>
   <extension
         point="org.eclipse.emf.ecore.generated_package">
      <package
            class="org.eclipse.papyrus.properties.generation.fieldselection.FieldSelectionPackage"
            genModel="Model/Properties.genmodel"
            uri="http://www.eclipse.org/papyrus/properties/fieldSelection">
      </package>
   </extension>
   <extension
         point="org.eclipse.papyrus.properties.generation.generator">
      <generator
            generator="org.eclipse.papyrus.properties.generation.generators.EcoreGenerator">
      </generator>
      <generator
            generator="org.eclipse.papyrus.properties.generation.generators.ProfileGenerator">
      </generator>
   </extension>
   <extension
         point="org.eclipse.papyrus.properties.generation.layout">
      <generator
            generator="org.eclipse.papyrus.properties.generation.layout.StandardLayoutGenerator">
      </generator>
   </extension>

</plugin>

Back to the top