Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/tablemigration/nattable/org.eclipse.papyrus.infra.emf.nattable.converter/plugin.xml')
-rw-r--r--extraplugins/tablemigration/nattable/org.eclipse.papyrus.infra.emf.nattable.converter/plugin.xml39
1 files changed, 39 insertions, 0 deletions
diff --git a/extraplugins/tablemigration/nattable/org.eclipse.papyrus.infra.emf.nattable.converter/plugin.xml b/extraplugins/tablemigration/nattable/org.eclipse.papyrus.infra.emf.nattable.converter/plugin.xml
new file mode 100644
index 00000000000..cf6573c0c4d
--- /dev/null
+++ b/extraplugins/tablemigration/nattable/org.eclipse.papyrus.infra.emf.nattable.converter/plugin.xml
@@ -0,0 +1,39 @@
+<?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.views.modelexplorer.modelexplorer.popup?after=org.eclipse.papyrus.views.modelexplorer.popupmenu.creatediagram">
+ <command
+ commandId="org.eclipse.papyrus.uml.nattable.converter.command"
+ style="push">
+ <visibleWhen
+ checkEnabled="true">
+ </visibleWhen>
+ </command>
+ <command
+ commandId="org.eclipse.papyrus.uml.nattable.converter.all.tables.command"
+ style="push">
+ <visibleWhen
+ checkEnabled="true">
+ </visibleWhen>
+ </command>
+ </menuContribution>
+ </extension>
+ <extension
+ point="org.eclipse.ui.commands">
+ <command
+ defaultHandler="org.eclipse.papyrus.uml.nattable.converter.handlers.ConvertOldTableHandler"
+ id="org.eclipse.papyrus.uml.nattable.converter.command"
+ name="Convert Old Table to New Table">
+ </command>
+ <command
+ defaultHandler="org.eclipse.papyrus.uml.nattable.converter.handlers.ConvertAllTablesHandler"
+ id="org.eclipse.papyrus.uml.nattable.converter.all.tables.command"
+ name="Convert All Old Tables to New Tables">
+ </command>
+ </extension>
+
+</plugin>

Back to the top