Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcletavernie2011-10-25 11:51:53 +0000
committercletavernie2011-10-25 11:51:53 +0000
commite2db5e69a58bc0638841e5febda1625923fae2d3 (patch)
tree21d27337dd2d591cd2aaf54e7dd4d99ce27dae64 /plugins/editor/org.eclipse.papyrus.editor/plugin.xml
parent68bbda4258b0bc3cb417230b9d56ba1c9d4fe161 (diff)
downloadorg.eclipse.papyrus-e2db5e69a58bc0638841e5febda1625923fae2d3.tar.gz
org.eclipse.papyrus-e2db5e69a58bc0638841e5febda1625923fae2d3.tar.xz
org.eclipse.papyrus-e2db5e69a58bc0638841e5febda1625923fae2d3.zip
359057: [Architecture - SVN - Build] The Papyrus architecture should be refactored
https://bugs.eclipse.org/bugs/show_bug.cgi?id=359057
Diffstat (limited to 'plugins/editor/org.eclipse.papyrus.editor/plugin.xml')
-rw-r--r--plugins/editor/org.eclipse.papyrus.editor/plugin.xml44
1 files changed, 44 insertions, 0 deletions
diff --git a/plugins/editor/org.eclipse.papyrus.editor/plugin.xml b/plugins/editor/org.eclipse.papyrus.editor/plugin.xml
new file mode 100644
index 00000000000..439a0f9d84b
--- /dev/null
+++ b/plugins/editor/org.eclipse.papyrus.editor/plugin.xml
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.2"?>
+<plugin>
+ <extension point="org.eclipse.ui.editors">
+ <editor
+ class="org.eclipse.papyrus.editor.PapyrusMultiDiagramEditor"
+ contributorClass="org.eclipse.papyrus.editor.PapyrusActionBarContributor"
+ default="true"
+ extensions="di"
+ icon="icons/papyrus/Papyrus_16x16.gif"
+ id="org.eclipse.papyrus.core.papyrusEditor"
+ matchingStrategy="org.eclipse.papyrus.editor.PapyrusMatchingStrategy"
+ name="Papyrus Editor Core">
+ </editor>
+ </extension>
+ <extension
+ point="org.eclipse.ui.menus">
+ <menuContribution
+ locationURI="menu:org.eclipse.ui.main.menu?after=navigate">
+ <menu
+ id="org.eclipse.papyrus.ui.menu"
+ label="Papyrus"
+ tooltip="Papyrus Editor Menu">
+ <visibleWhen>
+ <with
+ variable="activeEditorId">
+ <equals
+ value="org.eclipse.papyrus.core.papyrusEditor">
+ </equals>
+ </with>
+ </visibleWhen>
+ </menu>
+ </menuContribution>
+ </extension>
+ <extension
+ point="org.eclipse.ui.commands">
+ <category
+ description="this a category of papyrus commands"
+ id="org.eclipse.papyrus.editor.category"
+ name="Papyrus Category">
+ </category>
+ </extension>
+
+</plugin>

Back to the top