Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancois Le Fevre2017-01-27 14:40:54 +0000
committerGerrit Code Review @ Eclipse.org2017-03-22 08:46:27 +0000
commit1d1b9ad72effe0574fdc68d16307cb591ad6272a (patch)
treeeb706b13d0ca2a649610ce6bbce665e0df1a0b87 /plugins/developer/org.eclipse.papyrus.dev.ui/plugin.xml
parentb09b6325a317ea700f4942cecad7755354f15294 (diff)
downloadorg.eclipse.papyrus-1d1b9ad72effe0574fdc68d16307cb591ad6272a.tar.gz
org.eclipse.papyrus-1d1b9ad72effe0574fdc68d16307cb591ad6272a.tar.xz
org.eclipse.papyrus-1d1b9ad72effe0574fdc68d16307cb591ad6272a.zip
Bug 511190 - [devxp] all migration tools are making contribution under
the root menu -creation of a top developer menu when right clicking to gather all developer plugins menu contribution for popup. Change-Id: Icccebd5114c46ea346e558baad3c0bb281e64721 Signed-off-by: Francois Le Fevre <francois.le-fevre@cea.fr>
Diffstat (limited to 'plugins/developer/org.eclipse.papyrus.dev.ui/plugin.xml')
-rw-r--r--plugins/developer/org.eclipse.papyrus.dev.ui/plugin.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/plugins/developer/org.eclipse.papyrus.dev.ui/plugin.xml b/plugins/developer/org.eclipse.papyrus.dev.ui/plugin.xml
new file mode 100644
index 00000000000..3f9ff2ba32a
--- /dev/null
+++ b/plugins/developer/org.eclipse.papyrus.dev.ui/plugin.xml
@@ -0,0 +1,33 @@
+<?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.ui.popup.any">
+ <separator
+ name="org.eclipse.papyrus.dev.ui.menu.separator.before"
+ visible="true"
+ id="org.eclipse.papyrus.dev.ui.menu.separator.before">
+ </separator>
+ <menu
+ id="org.eclipse.papyrus.dev.ui.menu"
+ label="Papyrus Developer"
+ icon="platform:/plugin/org.eclipse.papyrus.dev.ui/icons/papyrus/Papyrus_16x16.gif"
+ tooltip="Papyrus Developer Menu">
+ <command
+ commandId="org.eclipse.papyrus.dev.ui.commands"
+ label="Upcoming elts for Developer..."
+ style="push"
+ tooltip="Upcoming elements for Developer...">
+ </command>
+ <separator
+ name="org.eclipse.papyrus.dev.ui.menu.separator.after"
+ visible="true"
+ id="org.eclipse.papyrus.dev.ui.menu.separator.after">
+ </separator>
+ </menu>
+ </menuContribution>
+ </extension>
+</plugin>

Back to the top