Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f90e51be5b9dc4349f30f74da2d9c9673f3795e7 (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension
         point="org.eclipse.ui.menus">
      <menuContribution
            allPopups="false"
            locationURI="popup:org.eclipse.papyrus.layers.stackmodel.ui.popupmenu?after=endseparator">
         <separator
               name="devseparator"
               visible="true">
         </separator>
         <menu
               label="Oldies">
            <command
                  commandId="org.eclipse.papyrus.layers.ui.commands.attachLayerStack"
                  label="Attach Layer Stack"
                  style="push"
                  tooltip="Attach a Layer Stack to the diagram">
            </command>
            <command
                  commandId="org.eclipse.papyrus.layers.ui.commands.createtoplayeroperator"
                  label="Create Top Layer Operator"
                  style="push"
                  tooltip="Create a top Layer operator">
            </command>
            <command
                  commandId="org.eclipse.papyrus.layers.ui.commands.createstackedLayerOperator"
                  label="Create Stacked Layer Operator"
                  style="push"
                  tooltip="Create a Stacked Layer operator">
            </command>
            <command
                  commandId="org.eclipse.papyrus.layers.ui.commands.attachPropertyToLayer"
                  label="Attach a Property to a Layer"
                  style="push"
                  tooltip="Attach a Property to a Layer">
            </command>
            <command
                  commandId="org.eclipse.papyrus.layers.ui.commands.createLayerOperator"
                  label="Create Layer Operators No Param"
                  style="push">
            </command>
         </menu>
      </menuContribution>
   </extension>

</plugin>

Back to the top