Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/uml/table/org.eclipse.papyrus.uml.table.common/plugin.xml')
-rw-r--r--plugins/uml/table/org.eclipse.papyrus.uml.table.common/plugin.xml61
1 files changed, 0 insertions, 61 deletions
diff --git a/plugins/uml/table/org.eclipse.papyrus.uml.table.common/plugin.xml b/plugins/uml/table/org.eclipse.papyrus.uml.table.common/plugin.xml
deleted file mode 100644
index 0491e4d2b4c..00000000000
--- a/plugins/uml/table/org.eclipse.papyrus.uml.table.common/plugin.xml
+++ /dev/null
@@ -1,61 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?eclipse version="3.4"?>
-<plugin>
- <extension
- point="org.eclipse.core.expressions.propertyTesters">
- <propertyTester
- class="org.eclipse.papyrus.uml.table.common.provider.UMLTablePropertyTester"
- id="org.eclipse.papyrus.uml.table.common.provider"
- namespace="org.eclipse.papyrus.uml.table.common.provider"
- properties="isUMLTable"
- type="org.eclipse.jface.viewers.IStructuredSelection">
- </propertyTester>
- </extension>
- <!--extension
- point="org.eclipse.ui.handlers">
- <handler
- class="org.eclipse.papyrus.uml.table.common.handler.SelectColumnsHandler"
- commandId="org.eclipse.papyrus.infra.table.common.selectvisiblecolumns">
- <activeWhen>
- <and>
- <with
- variable="activeEditorId">
- <equals
- value="org.eclipse.papyrus.infra.core.papyrusEditor">
- </equals>
- </with>
- <with
- variable="selection">
- <test
- forcePluginActivation="true"
- property="org.eclipse.papyrus.uml.table.common.provider.isUMLTable"
- value="true">
- </test>
- </with>
- </and>
- </activeWhen>
- </handler>
- <handler
- class="org.eclipse.papyrus.uml.table.common.handler.PasteInTableHandler"
- commandId="org.eclipse.ui.edit.paste">
- <activeWhen>
- <with
- variable="selection">
- <test
- forcePluginActivation="true"
- property="org.eclipse.papyrus.uml.table.common.provider.isUMLTable"
- value="true">
- </test>
- </with>
- </activeWhen>
- </handler>
- </extension>
- <extension
- point="org.eclipse.ui.menus">
- <menuContribution
- allPopups="true"
- class="org.eclipse.papyrus.uml.table.common.menu.ContributionFactory"
- locationURI="popup:org.eclipse.ui.popup.any">
- </menuContribution>
- </extension-->
-</plugin>

Back to the top