Skip to main content
summaryrefslogtreecommitdiffstats
blob: 0164774e1dd21b2c22763a4a56012a3c71cc32dc (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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?eclipse version="3.4"?>
<plugin>

<!--extension point="org.eclipse.papyrus.emf.facet.util.emf.core.modeldeclaration">
  <modeldeclaration file="resources/SimpleSysML.custom"/>
</extension-->
-->
<!-- This declaration is added in order command (CommandHandler) status to be
     verified (isVisible and isEnabled) before any attempt to execute the command, 
     and to mask the command in case it is not supported or executable.
  -->

<!-- Creation command declarations -->
<extension point="org.eclipse.ui.handlers">

	<!-- Handler for ActorPart -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.ActorPartPropertyHandler" commandId="org.eclipse.papyrus.sysml.service.types.ActorPartCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for Allocate -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.AllocateHandler" commandId="org.eclipse.papyrus.sysml.service.types.AllocateCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for Association -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.AssociationHandler" commandId="org.eclipse.papyrus.sysml.service.types.AssociationCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for AssociationComposite -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.AssociationCompositeHandler" commandId="org.eclipse.papyrus.sysml.service.types.AssociationCompositeCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for AssociationCompositeDirected -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.AssociationCompositeDirectedHandler" commandId="org.eclipse.papyrus.sysml.service.types.AssociationCompositeDirectedCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for AssociationNone -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.AssociationNoneHandler" commandId="org.eclipse.papyrus.sysml.service.types.AssociationNoneCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for AssociationNoneDirected -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.AssociationNoneDirectedHandler" commandId="org.eclipse.papyrus.sysml.service.types.AssociationNoneDirectedCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for AssociationShared -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.AssociationSharedHandler" commandId="org.eclipse.papyrus.sysml.service.types.AssociationSharedCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for AssociationSharedDirected -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.AssociationSharedDirectedHandler" commandId="org.eclipse.papyrus.sysml.service.types.AssociationSharedDirectedCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for Block -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.BlockHandler" commandId="org.eclipse.papyrus.sysml.service.types.BlockCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for Conform -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.ConformHandler" commandId="org.eclipse.papyrus.sysml.service.types.ConformCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
		
	<!-- Handler for ConstraintBlock -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.ConstraintBlockHandler" commandId="org.eclipse.papyrus.sysml.service.types.ConstraintBlockCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>

	<!-- Handler for ConstraintBlockParameter -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.ConstraintBlockParameterHandler" commandId="org.eclipse.papyrus.sysml.service.types.ConstraintBlockParameterCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>

	<!-- Handler for ConstraintProperty -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.ConstraintPropertyHandler" commandId="org.eclipse.papyrus.sysml.service.types.ConstraintPropertyCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for Copy -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.CopyHandler" commandId="org.eclipse.papyrus.sysml.service.types.CopyCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for DeriveReqt -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.DeriveReqtHandler" commandId="org.eclipse.papyrus.sysml.service.types.DeriveReqtCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for Dimension -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.DimensionHandler" commandId="org.eclipse.papyrus.sysml.service.types.DimensionCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for FlowPort -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.FlowPortHandler" commandId="org.eclipse.papyrus.sysml.service.types.FlowPortCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	  
	<!-- Handler for FlowPort_InOut -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.FlowPort_InOutHandler" commandId="org.eclipse.papyrus.sysml.service.types.FlowPort_InOutCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for FlowPort_In -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.FlowPort_InHandler" commandId="org.eclipse.papyrus.sysml.service.types.FlowPort_InCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for FlowPort_Out -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.FlowPort_OutHandler" commandId="org.eclipse.papyrus.sysml.service.types.FlowPort_OutCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>

	<!-- Handler for FlowPort_NA -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.FlowPort_NAHandler" commandId="org.eclipse.papyrus.sysml.service.types.FlowPort_NACreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>

	<!-- Handler for FlowProperty -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.FlowPropertyHandler" commandId="org.eclipse.papyrus.sysml.service.types.FlowPropertyCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for FlowSpecification -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.FlowSpecificationHandler" commandId="org.eclipse.papyrus.sysml.service.types.FlowSpecificationCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for ItemFlow -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.ItemFlowHandler" commandId="org.eclipse.papyrus.sysml.service.types.ItemFlowCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>

	<!-- Handler for PartProperty -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.PartPropertyHandler" commandId="org.eclipse.papyrus.sysml.service.types.PartPropertyCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
		
	<!-- Handler for Problem -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.ProblemHandler" commandId="org.eclipse.papyrus.sysml.service.types.ProblemCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for Rationale -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.RationaleHandler" commandId="org.eclipse.papyrus.sysml.service.types.RationaleCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for ReferenceProperty -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.ReferencePropertyHandler" commandId="org.eclipse.papyrus.sysml.service.types.ReferencePropertyCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for Requirement -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.RequirementHandler" commandId="org.eclipse.papyrus.sysml.service.types.RequirementCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for Satisfy -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.SatisfyHandler" commandId="org.eclipse.papyrus.sysml.service.types.SatisfyCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for Unit -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.UnitHandler" commandId="org.eclipse.papyrus.sysml.service.types.UnitCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for ValueProperty -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.ValuePropertyHandler" commandId="org.eclipse.papyrus.sysml.service.types.ValuePropertyCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for ValueType -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.ValueTypeHandler" commandId="org.eclipse.papyrus.sysml.service.types.ValueTypeCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for ValueType_Enumeration -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.ValueType_EnumerationHandler" commandId="org.eclipse.papyrus.sysml.service.types.ValueType_EnumerationCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for ValueType_PrimitiveType -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.ValueType_PrimitiveTypeHandler" commandId="org.eclipse.papyrus.sysml.service.types.ValueType_PrimitiveTypeCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for Verify -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.VerifyHandler" commandId="org.eclipse.papyrus.sysml.service.types.VerifyCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for View -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.ViewHandler" commandId="org.eclipse.papyrus.sysml.service.types.ViewCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
	<!-- Handler for ViewPoint -->
	<handler class="org.eclipse.papyrus.sysml.modelexplorer.handler.ViewPointHandler" commandId="org.eclipse.papyrus.sysml.service.types.ViewPointCreateCommand">
    <activeWhen>
       <with
             variable="activePartId">
          <equals
                value="org.eclipse.papyrus.views.modelexplorer.modelexplorer">
          </equals>
       </with>
    </activeWhen>
	</handler>
	
</extension>

	
<!-- UI Menu declaration for creation commands -->
<extension point="org.eclipse.ui.menus">

	<!-- Sub-menu declaration -->	 
	<menuContribution locationURI="popup:org.eclipse.papyrus.views.modelexplorer.modelexplorer.popup" allPopups="false">
		<menu id="org.eclipse.papyrus.views.modelexplorer.popupmenu.createsysmlchild"
			label="New SysML Child">
		</menu>
	</menuContribution>
	
	<!-- Create SysML element menu content -->
	<menuContribution locationURI="popup:org.eclipse.papyrus.views.modelexplorer.popupmenu.createsysmlchild" allPopups="false">

		<!-- Creation menu action for ActorPart -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.ActorPartCreateCommand" icon="platform:/plugin/org.eclipse.uml2.uml.edit/icons/full/obj16/Property.gif" label="Create a new ActorPart" style="push" tooltip="Create a new ActorPart">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for Allocate -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.AllocateCreateCommand" icon="platform:/plugin/org.eclipse.uml2.uml.edit/icons/full/obj16/Abstraction.gif" label="Create a new Allocate" style="push" tooltip="Create a new Allocate">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for Association -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.AssociationCreateCommand" icon="platform:/plugin/org.eclipse.uml2.uml.edit/icons/full/obj16/Association.gif" label="Create a new Association" style="push" tooltip="Create a new Association">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for AssociationComposite -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.AssociationCompositeCreateCommand" icon="platform:/plugin/org.eclipse.uml2.uml.edit/icons/full/obj16/Association.gif" label="Create a new AssociationComposite" style="push" tooltip="Create a new AssociationComposite">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for AssociationCompositeDirected -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.AssociationCompositeDirectedCreateCommand" icon="platform:/plugin/org.eclipse.uml2.uml.edit/icons/full/obj16/Association.gif" label="Create a new AssociationCompositeDirected" style="push" tooltip="Create a new AssociationCompositeDirected">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for AssociationNone -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.AssociationNoneCreateCommand" icon="platform:/plugin/org.eclipse.uml2.uml.edit/icons/full/obj16/Association.gif" label="Create a new AssociationNone" style="push" tooltip="Create a new AssociationNone">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for AssociationNoneDirected -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.AssociationNoneDirectedCreateCommand" icon="platform:/plugin/org.eclipse.uml2.uml.edit/icons/full/obj16/Association.gif" label="Create a new AssociationNoneDirected" style="push" tooltip="Create a new AssociationNoneDirected">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for AssociationShared -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.AssociationSharedCreateCommand" icon="platform:/plugin/org.eclipse.uml2.uml.edit/icons/full/obj16/Association.gif" label="Create a new AssociationShared" style="push" tooltip="Create a new AssociationShared">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for AssociationSharedDirected -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.AssociationSharedDirectedCreateCommand" icon="platform:/plugin/org.eclipse.uml2.uml.edit/icons/full/obj16/Association.gif" label="Create a new AssociationSharedDirected" style="push" tooltip="Create a new AssociationSharedDirected">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for Block -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.BlockCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/blocks/Block.gif" label="Create a new Block" style="push" tooltip="Create a new Block">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for Conform -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.ConformCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/modelelements/Conform.gif" label="Create a new Conform" style="push" tooltip="Create a new Conform">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for ConstraintBlock -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.ConstraintBlockCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/constraints/ConstraintBlock.gif" label="Create a new ConstraintBlock" style="push" tooltip="Create a new ConstraintBlock">
			<visibleWhen checkEnabled="true"/>
		</command>

		<!-- Creation menu action for ConstraintBlock Parameter -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.ConstraintBlockParameterCreateCommand" icon="platform:/plugin/org.eclipse.uml2.uml.edit/icons/full/obj16/Property.gif" label="Create a new Parameter" style="push" tooltip="Create a new Parameter">
			<visibleWhen checkEnabled="true"/>
		</command>

		<!-- Creation menu action for ConstraintProperty -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.ConstraintPropertyCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/constraints/ConstraintProperty.gif" label="Create a new ConstraintProperty" style="push" tooltip="Create a new ConstraintProperty">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for Copy -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.CopyCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/requirements/Copy.gif" label="Create a new Copy" style="push" tooltip="Create a new Copy">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for DeriveReqt -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.DeriveReqtCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/requirements/DeriveReqt.gif" label="Create a new DeriveReqt" style="push" tooltip="Create a new DeriveReqt">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for Dimension -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.DimensionCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/blocks/Dimension.gif" label="Create a new Dimension" style="push" tooltip="Create a new Dimension">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for FlowPort -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.FlowPortCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/portandflows/FlowPort.gif" label="Create a new FlowPort" style="push" tooltip="Create a new FlowPort">
			<visibleWhen checkEnabled="true"/>
		</command>
		  
		<!-- Creation menu action for FlowPort_InOut -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.FlowPort_InOutCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/portandflows/FlowPort_INOUT.gif" label="Create a new FlowPort_InOut" style="push" tooltip="Create a new FlowPort_InOut">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for FlowPort_In -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.FlowPort_InCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/portandflows/FlowPort_IN.gif" label="Create a new FlowPort_In" style="push" tooltip="Create a new FlowPort_In">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for FlowPort_Out -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.FlowPort_OutCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/portandflows/FlowPort_OUT.gif" label="Create a new FlowPort_Out" style="push" tooltip="Create a new FlowPort_Out">
			<visibleWhen checkEnabled="true"/>
		</command>

		<!-- Creation menu action for FlowPort_NA -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.FlowPort_NACreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/portandflows/FlowPort_NA.gif" label="Create a new FlowPort (non atomic)" style="push" tooltip="Create a new FlowPort (non atomic)">
			<visibleWhen checkEnabled="true"/>
		</command>

		<!-- Creation menu action for FlowProperty -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.FlowPropertyCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/portandflows/FlowProperty.gif" label="Create a new FlowProperty" style="push" tooltip="Create a new FlowProperty">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for FlowSpecification -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.FlowSpecificationCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/portandflows/FlowSpecification.gif" label="Create a new FlowSpecification" style="push" tooltip="Create a new FlowSpecification">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for ItemFlow -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.ItemFlowCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/portandflows/ItemFlow.gif" label="Create a new ItemFlow" style="push" tooltip="Create a new ItemFlow">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for PartProperty -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.PartPropertyCreateCommand" icon="platform:/plugin/org.eclipse.uml2.uml.edit/icons/full/obj16/Property.gif" label="Create a new Part" style="push" tooltip="Create a new Part">
			<visibleWhen checkEnabled="true"/>
		</command>
				
		<!-- Creation menu action for Problem -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.ProblemCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/modelelements/Problem.gif" label="Create a new Problem" style="push" tooltip="Create a new Problem">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for Rationale -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.RationaleCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/modelelements/Rationale.gif" label="Create a new Rationale" style="push" tooltip="Create a new Rationale">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for ReferenceProperty -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.ReferencePropertyCreateCommand" icon="platform:/plugin/org.eclipse.uml2.uml.edit/icons/full/obj16/Property.gif" label="Create a new Reference" style="push" tooltip="Create a new Reference">
			<visibleWhen checkEnabled="true"/>
		</command>
				
		<!-- Creation menu action for Requirement -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.RequirementCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/requirements/Requirement.gif" label="Create a new Requirement" style="push" tooltip="Create a new Requirement">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for Satisfy -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.SatisfyCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/requirements/Satisfy.gif" label="Create a new Satisfy" style="push" tooltip="Create a new Satisfy">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for Unit -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.UnitCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/blocks/Unit.gif" label="Create a new Unit" style="push" tooltip="Create a new Unit">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for ValueProperty -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.ValuePropertyCreateCommand" icon="platform:/plugin/org.eclipse.uml2.uml.edit/icons/full/obj16/Property.gif" label="Create a new Value" style="push" tooltip="Create a new Value">
			<visibleWhen checkEnabled="true"/>
		</command>
				
		<!-- Creation menu action for ValueType -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.ValueTypeCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/blocks/ValueType.gif" label="Create a new ValueType" style="push" tooltip="Create a new ValueType">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for ValueType_Enumeration -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.ValueType_EnumerationCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/blocks/ValueType.gif" label="Create a new ValueType_Enumeration" style="push" tooltip="Create a new ValueType_Enumeration">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for ValueType_PrimitiveType -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.ValueType_PrimitiveTypeCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/blocks/ValueType.gif" label="Create a new ValueType_PrimitiveType" style="push" tooltip="Create a new ValueType_PrimitiveType">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for Verify -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.VerifyCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/requirements/Verify.gif" label="Create a new Verify" style="push" tooltip="Create a new Verify">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for View -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.ViewCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/modelelements/View.gif" label="Create a new View" style="push" tooltip="Create a new View">
			<visibleWhen checkEnabled="true"/>
		</command>
		
		<!-- Creation menu action for ViewPoint -->
		<command commandId="org.eclipse.papyrus.sysml.service.types.ViewPointCreateCommand" icon="platform:/plugin/org.eclipse.papyrus.sysml/icons/modelelements/Viewpoint.gif" label="Create a new ViewPoint" style="push" tooltip="Create a new ViewPoint">
			<visibleWhen checkEnabled="true"/>
		</command>
		
	</menuContribution>
	
</extension>

<!-- Key bindings associated to creation commands -->
<extension point="org.eclipse.ui.bindings">

	<!-- "CTRL+I" : Create In FlowPort -->
	<key commandId="org.eclipse.papyrus.sysml.service.types.FlowPort_InCreateCommand"
		schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
		sequence="CTRL+I">
	</key>

	<!-- "CTRL+O" : Create Out FlowPort -->	
	<key commandId="org.eclipse.papyrus.sysml.service.types.FlowPort_OutCreateCommand"
		schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
		sequence="CTRL+O">
   </key>
   
</extension>
</plugin>

Back to the top