Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ee16660e1e5fdd5a685367fda0c1f7cb354d505e (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension
         point="org.eclipse.ui.commands">
      <command
            categoryId="org.eclipse.papyrus.editor.category"
            description="Create a EastAdl FunctionAllocation NatTable Editor"
            id="org.eclipse.papyrus.eastadl.nattable.allocation.create.command"
            name="Create a new FunctionAllocation Table">
      </command>
   </extension>
   <extension
         point="org.eclipse.ui.commandImages">
      <image
            commandId="org.eclipse.papyrus.eastadl.nattable.allocation.create.command"
            icon="icons/table_SysML_Allocation_new.png">
      </image>
   </extension>
   <extension
         point="org.eclipse.ui.handlers">
      <handler
            commandId="org.eclipse.papyrus.eastadl.nattable.allocation.create.command">
         <activeWhen>
            <or>
               <with
                     variable="activeEditorId">
                  <equals
                        value="org.eclipse.papyrus.infra.core.papyrusEditor">
                  </equals>
               </with>
            </or>
         </activeWhen>
         <class
               class="org.eclipse.papyrus.infra.nattable.common.handlers.CreateNatTableEditorHandler">
            <parameter
                  name="tableType"
                  value="EAST-ADLFunctionAllocationTable">
            </parameter>
         </class>
      </handler>
   </extension>
   <extension
         point="org.eclipse.ui.menus">
      <menuContribution
            allPopups="false"
            locationURI="popup:org.eclipse.papyrus.infra.nattable.popupmenu.createnattable">
         <command
               commandId="org.eclipse.papyrus.eastadl.nattable.allocation.create.command"
               style="push">
         </command>
      </menuContribution>
      <menuContribution
            allPopups="false"
            locationURI="menu:org.eclipse.papyrus.infra.nattable.menu.createnattable">
         <command
               commandId="org.eclipse.papyrus.eastadl.nattable.allocation.create.command"
               style="push">
         </command>
      </menuContribution>
   </extension>

</plugin>

Back to the top