Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/infra/types/org.eclipse.papyrus.infra.types.editor/plugin.xml')
-rw-r--r--plugins/infra/types/org.eclipse.papyrus.infra.types.editor/plugin.xml48
1 files changed, 48 insertions, 0 deletions
diff --git a/plugins/infra/types/org.eclipse.papyrus.infra.types.editor/plugin.xml b/plugins/infra/types/org.eclipse.papyrus.infra.types.editor/plugin.xml
new file mode 100644
index 00000000000..609a7d08438
--- /dev/null
+++ b/plugins/infra/types/org.eclipse.papyrus.infra.types.editor/plugin.xml
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.0"?>
+
+<!--
+ Copyright (c) 2014 CEA LIST.
+
+
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/epl-v10.html
+
+ Contributors:
+ CEA LIST - Initial API and implementation
+-->
+
+<plugin>
+
+
+
+ <extension point="org.eclipse.ui.newWizards">
+ <!-- @generated ElementTypesConfigurations -->
+ <category
+ id="org.eclipse.emf.ecore.Wizard.category.ID"
+ name="%_UI_Wizard_category"/>
+ <wizard
+ id="org.eclipse.papyrus.infra.types.presentation.ElementTypesConfigurationsModelWizardID"
+ name="%_UI_ElementTypesConfigurationsModelWizard_label"
+ class="org.eclipse.papyrus.infra.types.presentation.ElementTypesConfigurationsModelWizard"
+ category="org.eclipse.emf.ecore.Wizard.category.ID"
+ icon="icons/full/obj16/ElementTypesConfigurationsModelFile.gif">
+ <description>%_UI_ElementTypesConfigurationsModelWizard_description</description>
+ <selection class="org.eclipse.core.resources.IResource"/>
+ </wizard>
+ </extension>
+
+ <extension point="org.eclipse.ui.editors">
+ <!-- @generated ElementTypesConfigurations -->
+ <editor
+ id="org.eclipse.papyrus.infra.types.presentation.ElementTypesConfigurationsEditorID"
+ name="%_UI_ElementTypesConfigurationsEditor_label"
+ icon="icons/full/obj16/ElementTypesConfigurationsModelFile.gif"
+ class="org.eclipse.papyrus.infra.types.presentation.ElementTypesConfigurationsEditor"
+ contributorClass="org.eclipse.papyrus.infra.types.presentation.ElementTypesConfigurationsActionBarContributor">
+ <contentTypeBinding contentTypeId="org.eclipse.papyrus.infra.types"/>
+ </editor>
+ </extension>
+</plugin>

Back to the top