diff options
author | Olivier Constant | 2012-08-21 15:11:55 +0000 |
---|---|---|
committer | Olivier Constant | 2012-08-21 15:11:55 +0000 |
commit | e46d44890de75bb28f5a8c9049f6893924e90ca8 (patch) | |
tree | 503b95eafdb2ccf1a03a35c166d1192bda276ffd /tests/org.eclipse.emf.diffmerge.tests.elements.editor/plugin.xml | |
parent | e083d850ec78681fbc8bc22df7ec302ff2e3e06c (diff) | |
download | org.eclipse.emf.diffmerge.core-e46d44890de75bb28f5a8c9049f6893924e90ca8.tar.gz org.eclipse.emf.diffmerge.core-e46d44890de75bb28f5a8c9049f6893924e90ca8.tar.xz org.eclipse.emf.diffmerge.core-e46d44890de75bb28f5a8c9049f6893924e90ca8.zip |
Setting up tests
Diffstat (limited to 'tests/org.eclipse.emf.diffmerge.tests.elements.editor/plugin.xml')
-rw-r--r-- | tests/org.eclipse.emf.diffmerge.tests.elements.editor/plugin.xml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/org.eclipse.emf.diffmerge.tests.elements.editor/plugin.xml b/tests/org.eclipse.emf.diffmerge.tests.elements.editor/plugin.xml new file mode 100644 index 00000000..3b02bc66 --- /dev/null +++ b/tests/org.eclipse.emf.diffmerge.tests.elements.editor/plugin.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.0"?>
+
+<!--
+-->
+
+<plugin>
+
+ <extension point="org.eclipse.ui.newWizards">
+ <category
+ id="org.eclipse.emf.ecore.Wizard.category.ID"
+ name="%_UI_Wizard_category"/>
+ <wizard
+ id="org.eclipse.emf.diffmerge.tests.elements.Elements.presentation.ElementsModelWizardID"
+ name="%_UI_ElementsModelWizard_label"
+ class="org.eclipse.emf.diffmerge.tests.elements.Elements.presentation.ElementsModelWizard"
+ category="org.eclipse.emf.ecore.Wizard.category.ID"
+ icon="icons/full/obj16/ElementsModelFile.gif">
+ <description>%_UI_ElementsModelWizard_description</description>
+ <selection class="org.eclipse.core.resources.IResource"/>
+ </wizard>
+ </extension>
+
+ <extension point="org.eclipse.ui.editors">
+ <editor
+ id="org.eclipse.emf.diffmerge.tests.elements.Elements.presentation.ElementsEditorID"
+ name="%_UI_ElementsEditor_label"
+ icon="icons/full/obj16/ElementsModelFile.gif"
+ extensions="elements"
+ class="org.eclipse.emf.diffmerge.tests.elements.Elements.presentation.ElementsEditor"
+ contributorClass="org.eclipse.emf.diffmerge.tests.elements.Elements.presentation.ElementsActionBarContributor">
+ </editor>
+ </extension>
+
+</plugin>
|