Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5d5a73d154f25023109cb304ca0f4fd597a13e44 (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
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>

<!--
 <copyright>
 </copyright>

 $Id$
-->

<plugin>

   <extension point="org.eclipse.ui.newWizards">
   	 <!-- @generated NOT -->
      <wizard
            id="org.eclipse.papyrus.infra.constraints.presentation.ConstraintsModelWizardID"
            name="%_UI_ConstraintsModelWizard_label"
            class="org.eclipse.papyrus.infra.constraints.presentation.ConstraintsModelWizard"
            category="org.eclipse.papyrus.wizards.category/org.eclipse.papyrus.wizards.addons.category"
            icon="icons/full/obj16/ConstraintsModelFile.gif">
         <description>%_UI_ConstraintsModelWizard_description</description>
         <selection class="org.eclipse.core.resources.IResource"/>
      </wizard>
      <wizard
            id="org.eclipse.papyrus.infra.constraints.environment.presentation.EnvironmentModelWizardID"
            name="%_UI_EnvironmentModelWizard_label"
            class="org.eclipse.papyrus.infra.constraints.environment.presentation.EnvironmentModelWizard"
            category="org.eclipse.papyrus.wizards.category/org.eclipse.papyrus.wizards.addons.category"
            icon="icons/full/obj16/EnvironmentModelFile.gif">
         <description>%_UI_EnvironmentModelWizard_description</description>
         <selection class="org.eclipse.core.resources.IResource"/>
      </wizard>
   </extension>

   <extension point="org.eclipse.ui.editors">
      <editor
            id="org.eclipse.papyrus.infra.constraints.presentation.ConstraintsEditorID"
            name="%_UI_ConstraintsEditor_label"
            icon="icons/full/obj16/ConstraintsModelFile.gif"
            extensions="constraints"
            class="org.eclipse.papyrus.infra.constraints.presentation.ConstraintsEditor"
            contributorClass="org.eclipse.papyrus.infra.constraints.presentation.ConstraintsActionBarContributor">
      </editor>
   </extension>

   <extension point="org.eclipse.ui.editors">
      <editor
            id="org.eclipse.papyrus.infra.constraints.environment.presentation.EnvironmentEditorID"
            name="%_UI_EnvironmentEditor_label"
            icon="icons/full/obj16/EnvironmentModelFile.gif"
            extensions="environment"
            class="org.eclipse.papyrus.infra.constraints.environment.presentation.EnvironmentEditor"
            contributorClass="org.eclipse.papyrus.infra.constraints.environment.presentation.EnvironmentActionBarContributor">
      </editor>
   </extension>

</plugin>

Back to the top