Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3a6fe88efc10f014388bae96129e010732cdea61 (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
<?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"
            id="org.eclipse.papyrus.plugin.management.command"
            name="Edit Meta information">
      </command>
   </extension>
   <extension
         point="org.eclipse.ui.menus">
      <menuContribution
            allPopups="false"
            locationURI="popup:org.eclipse.ui.popup.any">
         <command
               commandId="org.eclipse.papyrus.plugin.management.command"
               icon="icons/update-plugin.png"
               style="push">
         </command>
      </menuContribution>
   </extension>
   <extension
         point="org.eclipse.ui.handlers">
      <handler
            class="org.eclipse.papyrus.plugin.management.handler.RefactoringHandler"
            commandId="org.eclipse.papyrus.plugin.management.command">
      </handler>
   </extension>

</plugin>

Back to the top