Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8e66ac2ee45667ec52981d19fa8cc91e1bdc7add (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>

<plugin>
   <extension-point id="diagnosticians" name="Registered diagnostician" schema="schema/diagnostician.exsd"/>
   <extension
         point="org.eclipse.ui.preferencePages">
      <page
            category="org.eclipse.papyrus.infra.core.sasheditor.preferences.generalcategory"
            class="org.eclipse.papyrus.infra.services.validation.preferences.PreferencePage"
            id="org.eclipse.papyrus.infra.gmfdiag.preferences.validation"
            name="Validation preferences">
      </page>
   </extension>
   <extension
         point="org.eclipse.core.runtime.preferences">
      <initializer
            class="org.eclipse.papyrus.infra.services.validation.preferences.Initializer">
      </initializer>
   </extension>
   <extension
         point="org.eclipse.ui.menus">
      <menuContribution
            allPopups="false"
            locationURI="popup:org.eclipse.papyrus.views.modelexplorer.modelexplorer.popup?after=tools">
         <menu
               icon="icons/etool16/validate.gif"
               id="org.eclipse.papyrus.views.modelexplorer.popup.validation"
               label="Validation">
         </menu>
      </menuContribution>
      <menuContribution
            allPopups="false"
            locationURI="popup:org.eclipse.gmf.runtime.diagram.ui.DiagramEditorContextMenu?after=filtersMenu">
         <menu
               icon="icons/etool16/validate.gif"
               id="org.eclipse.papyrus.views.modelexplorer.popup.validation"
               label="Validation">
         </menu>
      </menuContribution>
      <menuContribution
            allPopups="true"
            locationURI="popup:org.eclipse.papyrus.views.modelexplorer.popup.validation">
         <command
               commandId="org.eclipse.papyrus.validation.ValidateModelCommand"
               icon="icons/etool16/validate.gif"
               id="org.eclipse.papyrus.validation.ValidateModel"
               label="Validate model">
         </command>
         <command
               commandId="org.eclipse.papyrus.validation.ValidateSubtreeCommand"
               icon="icons/etool16/validate.gif"
               id="org.eclipse.papyrus.validation.ValidateSubtree"
               label="Validate subtree">
         </command>
         <command
               commandId="org.eclipse.papyrus.validation.SelectAndValidateModelCommand"
               icon="icons/etool16/validateSel.gif"
               id="org.eclipse.papyrus.validation.SelectAndValidateModel"
               label="Select constraints and Validate model">
         </command>
         <command
               commandId="org.eclipse.papyrus.validation.SelectAndValidateSubtreeCommand"
               icon="icons/etool16/validateSel.gif"
               id="org.eclipse.papyrus.validation.SelectAndValidateSubtree"
               label="Select constraints and Validate subtree">
         </command>
         <command
               commandId="org.eclipse.papyrus.validation.ValidateDelMarkersFromModelCommand"
               disabledIcon="IMG_TOOL_DELETE_DISABLED"
               icon="IMG_TOOL_DELETE"
               id="org.eclipse.papyrus.validation.DeleteMarkersFromModel"
               label="Remove markers from model">
         </command>
         <command
               commandId="org.eclipse.papyrus.validation.ValidateDelMarkersFromSubtreeCommand"
               disabledIcon="IMG_TOOL_DELETE_DISABLED"
               icon="IMG_TOOL_DELETE"
               id="org.eclipse.papyrus.validation.DelMarkersFromSubtree"
               label="Remove markers from subtree">
         </command>
      </menuContribution>
      <menuContribution
            allPopups="true"
            locationURI="popup:org.eclipse.papyrus.infra.nattable.widget.menu?after=tools.separator">
           <menu
               icon="icons/etool16/validate.gif"
               id="org.eclipse.papyrus.views.modelexplorer.popup.validation"
               label="Validation">
         </menu>
      </menuContribution>
   </extension>
  
   <extension
         point="org.eclipse.ui.commands">
      <command
            categoryId="org.eclipse.papyrus.editor.category"
            defaultHandler="org.eclipse.papyrus.infra.services.validation.handler.ValidateModelHandler"
            description="ValidateModel"
            id="org.eclipse.papyrus.validation.ValidateModelCommand"
            name="ValidateModel">
      </command>
      <command
            categoryId="org.eclipse.papyrus.editor.category"
            defaultHandler="org.eclipse.papyrus.infra.services.validation.handler.ValidateSubtreeHandler"
            description="ValidateSubtree"
            id="org.eclipse.papyrus.validation.ValidateSubtreeCommand"
            name="ValidateSubtree">
      </command>
      <command
            categoryId="org.eclipse.papyrus.editor.category"
            defaultHandler="org.eclipse.papyrus.infra.services.validation.handler.SelectAndValidateSubtreeHandler"
            description="SelectAndValidate"
            id="org.eclipse.papyrus.validation.SelectAndValidateSubtreeCommand"
            name="SelectAndValidate">
      </command>
      <command
            categoryId="org.eclipse.papyrus.editor.category"
            defaultHandler="org.eclipse.papyrus.infra.services.validation.handler.SelectAndValidateModelHandler"
            description="SelectAndValidate"
            id="org.eclipse.papyrus.validation.SelectAndValidateModelCommand"
            name="SelectAndValidate">
      </command>
      <command
            categoryId="org.eclipse.papyrus.editor.category"
            defaultHandler="org.eclipse.papyrus.infra.services.validation.handler.ValidateDelMarkersFromModelHandler"
            description="ValidateDelMarkersFromModel"
            id="org.eclipse.papyrus.validation.ValidateDelMarkersFromModelCommand"
            name="ValidateDelMarkersFromModel">
      </command>
      <command
            categoryId="org.eclipse.papyrus.editor.category"
            defaultHandler="org.eclipse.papyrus.infra.services.validation.handler.ValidateDelMarkersFromSubtreeHandler"
            description="ValidateDelMarkersFromSubtree"
            id="org.eclipse.papyrus.validation.ValidateDelMarkersFromSubtreeCommand"
            name="ValidateDelMarkersFromSubtree">
      </command>
   </extension>
   <extension
         point="org.eclipse.papyrus.infra.services.decoration.decorationSpecificFunctions">
      <client
            class="org.eclipse.papyrus.infra.services.validation.ValidationFunctions"
            decorationType="org.eclipse.emf.ecore.diagnostic">
      </client>
   </extension>
</plugin>

Back to the top