Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/propertylifecycle/org.eclipse.papyrus.propertylifecycle.model/plugin.xml')
-rwxr-xr-xextraplugins/propertylifecycle/org.eclipse.papyrus.propertylifecycle.model/plugin.xml49
1 files changed, 49 insertions, 0 deletions
diff --git a/extraplugins/propertylifecycle/org.eclipse.papyrus.propertylifecycle.model/plugin.xml b/extraplugins/propertylifecycle/org.eclipse.papyrus.propertylifecycle.model/plugin.xml
new file mode 100755
index 00000000000..d241dfe9767
--- /dev/null
+++ b/extraplugins/propertylifecycle/org.eclipse.papyrus.propertylifecycle.model/plugin.xml
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.0"?>
+
+<!--
+ Copyright (c) 2016 CEA LIST and others.
+
+ 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:
+
+ Quentin Le Menez (CEA LIST) quentin.lemenez@cea.fr - Initial API and implementation
+-->
+
+<plugin>
+
+ <extension point="org.eclipse.emf.ecore.generated_package">
+ <!-- @generated propertylifecycle -->
+ <package
+ uri="http://www.eclipse.org/papyrus/infra/propertylifecycle/1.0"
+ class="org.eclipse.papyrus.propertylifecycle.PropertylifecyclePackage"
+ genModel="model/propertylifecycle.genmodel"/>
+ </extension>
+
+ <extension point="org.eclipse.emf.ecore.content_parser">
+ <!-- @generated propertylifecycle -->
+ <parser
+ contentTypeIdentifier="org.eclipse.papyrus.infra.propertylifecycle"
+ class="org.eclipse.papyrus.propertylifecycle.util.PropertylifecycleResourceFactoryImpl"/>
+ </extension>
+
+ <extension point="org.eclipse.core.contenttype.contentTypes">
+ <!-- @generated propertylifecycle -->
+ <content-type
+ base-type="org.eclipse.emf.ecore.xmi"
+ file-extensions="propertylifecycle"
+ id="org.eclipse.papyrus.infra.propertylifecycle"
+ name="%_UI_Propertylifecycle_content_type"
+ priority="normal">
+ <describer class="org.eclipse.emf.ecore.xmi.impl.RootXMLContentHandlerImpl$Describer">
+ <parameter name="namespace" value="http://www.eclipse.org/papyrus/infra/propertylifecycle/1.0"/>
+ <parameter name="kind" value="xmi"/>
+ </describer>
+ </content-type>
+ </extension>
+
+</plugin>

Back to the top