Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick tessier2014-02-10 12:43:29 +0000
committerPatrick tessier2014-02-10 12:43:29 +0000
commit74550693a485c6ff27748a6c5a9bfdae21b8bd5b (patch)
treec47f42dd4f68434598c3bf6b29c7ce3a6fdb5314 /plugins/facet/org.eclipse.papyrus.emf.facet.custom.core/plugin.xml
parentbc56e957da4deded94425181f3288b98407c5764 (diff)
downloadorg.eclipse.papyrus-74550693a485c6ff27748a6c5a9bfdae21b8bd5b.tar.gz
org.eclipse.papyrus-74550693a485c6ff27748a6c5a9bfdae21b8bd5b.tar.xz
org.eclipse.papyrus-74550693a485c6ff27748a6c5a9bfdae21b8bd5b.zip
386118: [EMF Facet] Papyrus should progressively support EMF Facet 0.2
https://bugs.eclipse.org/bugs/show_bug.cgi?id=386118 import EMF-FACET
Diffstat (limited to 'plugins/facet/org.eclipse.papyrus.emf.facet.custom.core/plugin.xml')
-rw-r--r--plugins/facet/org.eclipse.papyrus.emf.facet.custom.core/plugin.xml40
1 files changed, 40 insertions, 0 deletions
diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.core/plugin.xml b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.core/plugin.xml
new file mode 100644
index 00000000000..5dc1df74eba
--- /dev/null
+++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.core/plugin.xml
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.4"?>
+<!--
+Copyright (c) 2011 Mia-Software.
+
+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:
+ Gregoire Dupe (Mia-Software) - Bug 361794 - [Restructuring] EMF Facet customization meta-model
+ Gregoire Dupe (Mia-Software) - Bug 369987 - [Restructuring][Table] Switch to the new customization and facet framework
+ Gregoire Dupé (Mia-Software) - Bug 418885 - ETypedElementSwitchQuery implemented using a deprecated query evaluator extension point
+-->
+<plugin>
+ <extension
+ point="org.eclipse.emf.facet.util.emf.core.catalogmanager">
+ <catalog
+ class="org.eclipse.emf.facet.custom.core.internal.CustomizationCatalogManager">
+ </catalog>
+ </extension>
+
+ <extension
+ point="org.eclipse.emf.facet.util.emf.core.catalogmanager">
+ <catalog
+ class="org.eclipse.emf.facet.custom.core.internal.CustomizationPropertiesCatalogManager">
+ </catalog>
+ </extension>
+
+ <extension point="org.eclipse.emf.facet.efacet.core.derivedTypedElementImplementationRegistration">
+ <derivedTypedElementImplementationRegistration
+ class="org.eclipse.emf.facet.custom.core.internal.query.ETypedElementSwitchQueryImplementationFactory">
+ </derivedTypedElementImplementationRegistration>
+ </extension>
+
+ <extension point="org.eclipse.emf.facet.efacet.core.queryImplementationRegistration">
+ <queryImplementationRegistration class="org.eclipse.emf.facet.custom.core.internal.query.SwitchQueryImplementationFactory"/>
+ </extension>
+</plugin>

Back to the top