diff options
Diffstat (limited to 'plugins/infra/emf/org.eclipse.papyrus.infra.emf.editor/plugin.xml')
-rw-r--r-- | plugins/infra/emf/org.eclipse.papyrus.infra.emf.editor/plugin.xml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/plugins/infra/emf/org.eclipse.papyrus.infra.emf.editor/plugin.xml b/plugins/infra/emf/org.eclipse.papyrus.infra.emf.editor/plugin.xml new file mode 100644 index 00000000000..c7319065fed --- /dev/null +++ b/plugins/infra/emf/org.eclipse.papyrus.infra.emf.editor/plugin.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.4"?>
+<plugin>
+ <extension
+ point="org.eclipse.ui.views.properties.tabbed.propertyContributor">
+ <propertyContributor
+ contributorId="CustomizablePropertyView"
+ labelProvider="org.eclipse.papyrus.properties.providers.SelectionLabelProvider"
+ tabDescriptorProvider="org.eclipse.papyrus.properties.xwt.XWTTabDescriptorProvider">
+ </propertyContributor>
+ </extension>
+ <extension
+ point="org.eclipse.ui.editors">
+ <editor
+ class="org.eclipse.papyrus.infra.emf.editor.part.PapyrusEditor"
+ contributorClass="org.eclipse.papyrus.infra.emf.editor.part.ActionBarContributor"
+ default="false"
+ extensions="xmi"
+ icon="icons/papyrus_model.png"
+ id="org.eclipse.papyrus.emf.editor"
+ name="Papyrus EMF Editor">
+ </editor>
+ </extension>
+
+</plugin>
|