Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 719e8a1b3c07d2a346c6ebdbf05a0b412dd045ff (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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
   <extension-point id="papyrusDiagram" name="PapyrusDiagram" schema="schema/papyrusDiagram.exsd"/>
   <extension-point id="modelListener" name="ModelListener" schema="schema/modelListener.exsd"/>
   <extension-point id="papyrusContentOutline" name="PapyrusContentOutline" schema="schema/contentOutline.exsd"/>
   <extension-point id="service" name="Service" schema="schema/service.exsd"/>
   <extension-point id="model" name="plugin.xml.ModelName" schema="schema/model.exsd"/>
   <extension-point id="transactionalEditingDomainProvider" name="transactionalEditingDomainProvider" schema="schema/transactionalEditingDomainProvider.exsd"/>
   <extension
         point="org.eclipse.ui.menus">
      <menuContribution
            locationURI="toolbar:org.eclipse.ui.main.toolbar">
         <toolbar
               id="org.eclipse.papyrus.uml.diagram.ui.toolbar">
            <command
                  commandId="org.eclipse.papyrus.infra.core.commands.dropdowncommand"
                  icon="icons/papyrus/Papyrus_16x16.gif"
                  label="Close Diagrams"
                  style="pulldown"
                  tooltip="Close Current Editor&apos;s Diagrams ">
               <visibleWhen>
                  <with
                        variable="activeEditorId">
                     <equals
                           value="org.eclipse.papyrus.infra.core.papyrusEditor">
                     </equals>
                  </with>
               </visibleWhen>
            </command>
         </toolbar>
      </menuContribution>
      <menuContribution
            locationURI="toolbar:org.eclipse.papyrus.uml.diagram.ui.toolbar">
      </menuContribution>
      <menuContribution
            locationURI="popup:org.eclipse.papyrus.infra.core.editor.ui.tabmenu?endof=tabcommands">
         <command
               commandId="org.eclipse.papyrus.infra.core.commands.closediagram"
               label="Close Diagram"
               style="push"
               tooltip="Close Currently Selected Diagram">
            <visibleWhen>
               <with
                     variable="activeEditorId">
                  <equals
                        value="org.eclipse.papyrus.infra.core.papyrusEditor">
                  </equals>
               </with>
            </visibleWhen>
         </command>
         <command
               commandId="org.eclipse.papyrus.infra.core.commands.closealldiagram"
               label="Close All Diagrams"
               style="push"
               tooltip="Close All Opened Diagrams">
            <visibleWhen>
               <with
                     variable="activeEditorId">
                  <equals
                        value="org.eclipse.papyrus.infra.core.papyrusEditor">
                  </equals>
               </with>
            </visibleWhen>
         </command>
         <command
               commandId="org.eclipse.papyrus.infra.core.commands.closeothersdiagrams"
               label="Close Others Diagrams"
               style="push"
               tooltip="Close All Diagrams except the selected one">
            <visibleWhen>
               <with
                     variable="activeEditorId">
                  <equals
                        value="org.eclipse.papyrus.infra.core.papyrusEditor">
                  </equals>
               </with>
            </visibleWhen>
         </command>
      </menuContribution>
      <menuContribution
            allPopups="false"
            locationURI="menu:org.eclipse.papyrus.infra.core.commands.dropdowncommand">
         <command
               commandId="org.eclipse.papyrus.infra.core.commands.closediagram"
               style="push"
               tooltip="Close Currently Selected Diagram">
            <visibleWhen>
               <with
                     variable="activeEditorId">
                  <equals
                        value="org.eclipse.papyrus.infra.core.papyrusEditor">
                  </equals>
               </with>
            </visibleWhen>
         </command>
         <command
               commandId="org.eclipse.papyrus.infra.core.commands.closealldiagram"
               label="Close All Diagrams"
               style="push"
               tooltip="Close All Opened Diagrams">
            <visibleWhen>
               <with
                     variable="activeEditorId">
                  <equals
                        value="org.eclipse.papyrus.infra.core.papyrusEditor">
                  </equals>
               </with>
            </visibleWhen>
         </command>
         <command
               commandId="org.eclipse.papyrus.infra.core.commands.closeothersdiagrams"
               label="Close Others Diagrams"
               style="push"
               tooltip="Close All Diagrams except the selected one">
            <visibleWhen>
               <with
                     variable="activeEditorId">
                  <equals
                        value="org.eclipse.papyrus.infra.core.papyrusEditor">
                  </equals>
               </with>
            </visibleWhen>
         </command>
      </menuContribution>
   </extension>
   <extension
         point="org.eclipse.ui.commands">
      <command
            id="org.eclipse.papyrus.infra.core.commands.closealldiagram"
            name="Close All Diagrams">
      </command>
      <command
            id="org.eclipse.papyrus.infra.core.commands.closediagram"
            name="Close Diagram">
      </command>
      <command
            id="org.eclipse.papyrus.infra.core.commands.closeothersdiagrams"
            name="Close Others Diagrams">
      </command>
      <command
            defaultHandler="org.eclipse.papyrus.infra.core.sasheditor.di.contentprovider.commands.CloseDiagramCommand"
            id="org.eclipse.papyrus.infra.core.commands.dropdowncommand"
            name="dropdown tool">
      </command>
   </extension>
   <extension
         point="org.eclipse.ui.handlers">
      <handler
            class="org.eclipse.papyrus.infra.core.sasheditor.di.contentprovider.commands.CloseDiagramCommand"
            commandId="org.eclipse.papyrus.infra.core.commands.closediagram">
      </handler>
      <handler
            class="org.eclipse.papyrus.infra.core.sasheditor.di.contentprovider.commands.CloseAllDiagramsCommand"
            commandId="org.eclipse.papyrus.infra.core.commands.closealldiagram">
      </handler>
      <handler
            class="org.eclipse.papyrus.infra.core.sasheditor.di.contentprovider.commands.CloseOtherDiagramsCommand"
            commandId="org.eclipse.papyrus.infra.core.commands.closeothersdiagrams">
      </handler>
   </extension>
   <extension
         point="org.eclipse.papyrus.infra.core.model">
      <model
            classname="org.eclipse.papyrus.infra.core.resource.uml.ExtendedUmlModel"
            description="Model for UML">
         <modelSnippet
               classname="org.eclipse.papyrus.infra.core.resource.uml.UmlSnippet"
               description="Complete the UML model.">
         </modelSnippet>
      </model>
      <model
            classname="org.eclipse.papyrus.infra.core.resource.notation.NotationModel"
            description="Model for natation">
      </model>
      <model
            classname="org.eclipse.papyrus.infra.core.resource.sasheditor.SashModel"
            description="Model for sash system">
      </model>
      <modelSetSnippet
            classname="org.eclipse.papyrus.infra.core.modelsetquery.impl.ModelSetQueryInitializer"
            description="Adapter attached to the ModelSet (aka ResourceSet)">
      </modelSetSnippet>
   </extension>
   <extension
         point="org.eclipse.papyrus.infra.core.service">
      <serviceFactory
            classname="org.eclipse.papyrus.infra.core.editor.ModelSetServiceFactory"
            description="The service loading Models"
            id="org.eclipse.papyrus.resource.ModelSet"
            priority="1"
            startKind="startup">
      </serviceFactory>
      <serviceFactory
            classname="org.eclipse.papyrus.infra.core.editor.DiResourceSetServiceFactory"
            description="An alias to ModelSet"
            id="org.eclipse.papyrus.infra.core.utils.DiResourceSet"
            priority="1"
            startKind="startup">
         <dependsOn
               serviceKeyRef="org.eclipse.papyrus.resource.ModelSet">
         </dependsOn>
      </serviceFactory>
      <serviceFactory
            classname="org.eclipse.papyrus.infra.core.resource.EditingDomainServiceFactory"
            description="TransactionalEditing Domain"
            id="org.eclipse.emf.transaction.TransactionalEditingDomain"
            priority="1"
            startKind="startup">
         <dependsOn
               serviceKeyRef="org.eclipse.papyrus.resource.ModelSet">
         </dependsOn>
      </serviceFactory>
      <serviceFactory
            classname="org.eclipse.papyrus.infra.core.editor.PageIconRegistryServiceFactory"
            id="org.eclipse.papyrus.infra.core.editorsfactory.IPageIconsRegistry"
            priority="1"
            startKind="startup">
      </serviceFactory>
      <serviceFactory
            classname="org.eclipse.papyrus.infra.core.editor.DiSashModelMngrServiceFactory"
            description="The concrete implementation of SashContentProviderr and IPageMngr"
            id="org.eclipse.papyrus.infra.core.sasheditor.di.contentprovider.DiSashModelMngr"
            priority="1"
            startKind="startup">
         <dependsOn
               serviceKeyRef="org.eclipse.emf.transaction.TransactionalEditingDomain">
         </dependsOn>
         <dependsOn
               serviceKeyRef="org.eclipse.papyrus.resource.ModelSet">
         </dependsOn>
      </serviceFactory>
      <serviceFactory
            classname="org.eclipse.papyrus.infra.core.editor.PageMngrServiceFactory"
            description="IPageMngr allows to add and remove pages to the editor."
            id="org.eclipse.papyrus.infra.core.sasheditor.contentprovider.IPageMngr"
            priority="1"
            startKind="startup">
         <dependsOn
               serviceKeyRef="org.eclipse.papyrus.infra.core.sasheditor.di.contentprovider.DiSashModelMngr">
         </dependsOn>
      </serviceFactory>
      <serviceFactory
            classname="org.eclipse.papyrus.infra.core.editor.ContentProviderServiceFactory"
            description="The SashContentProvider maintain the structure of pages of the editor."
            id="org.eclipse.papyrus.infra.core.sasheditor.contentprovider.ISashWindowsContentProvider"
            priority="1"
            startKind="startup">
         <dependsOn
               serviceKeyRef="org.eclipse.papyrus.infra.core.sasheditor.di.contentprovider.DiSashModelMngr">
         </dependsOn>
      </serviceFactory>
      <service
            classname="org.eclipse.papyrus.infra.core.lifecycleevents.SaveAndDirtyService"
            description="Service used to maintain the dirty state, and to perform save and saveAs"
            id="org.eclipse.papyrus.infra.core.lifecycleevents.ISaveAndDirtyService"
            priority="1"
            startKind="startup">
         <dependsOn
               serviceKeyRef="org.eclipse.emf.transaction.TransactionalEditingDomain">
         </dependsOn>
         <dependsOn
               serviceKeyRef="org.eclipse.papyrus.resource.ModelSet">
         </dependsOn>
      </service>
      <serviceFactory
            classname="org.eclipse.papyrus.infra.core.lifecycleevents.LifeCycleEventsProviderServiceFactory"
            description="Service allowing to listen on save events."
            id="org.eclipse.papyrus.infra.core.lifecycleevents.ILifeCycleEventsProvider"
            priority="1"
            startKind="startup">
         <dependsOn
               serviceKeyRef=" org.eclipse.papyrus.infra.core.lifecycleevents.ISaveAndDirtyService">
         </dependsOn>
      </serviceFactory>
   </extension>
   <extension
         point="org.eclipse.ui.exportWizards">
      <category
            id="org.eclipse.papyrus.infra.core.exportcategory"
            name="Papyrus">
      </category>
   </extension>
	
	
</plugin>

Back to the top