diff options
author | Patrick tessier | 2014-02-10 12:43:29 +0000 |
---|---|---|
committer | Patrick tessier | 2014-02-10 12:43:29 +0000 |
commit | 74550693a485c6ff27748a6c5a9bfdae21b8bd5b (patch) | |
tree | c47f42dd4f68434598c3bf6b29c7ce3a6fdb5314 /plugins/facet/org.eclipse.papyrus.emf.facet.custom.ui/plugin.xml | |
parent | bc56e957da4deded94425181f3288b98407c5764 (diff) | |
download | org.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.ui/plugin.xml')
-rw-r--r-- | plugins/facet/org.eclipse.papyrus.emf.facet.custom.ui/plugin.xml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.ui/plugin.xml b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.ui/plugin.xml new file mode 100644 index 00000000000..35074e8c8f0 --- /dev/null +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.ui/plugin.xml @@ -0,0 +1,37 @@ +<?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] New customization meta-model
+ David Couvrand (Soft-Maint) - Bug 402725 - Need a query to get an image from an URI
+ Nicolas Rault (Soft-Maint) - Bug 402725 - Need a query to get an image from an URI
+-->
+<plugin>
+ <extension point="org.eclipse.emf.facet.util.emf.core.modeldeclaration">
+ <modeldeclaration file="resources/customproperties.efacet"/>
+ </extension>
+
+ <extension point="org.eclipse.ui.views">
+ <view
+ category="org.eclipse.emf.facet.common.ui.views"
+ class="org.eclipse.emf.facet.custom.ui.internal.view.CustomizationsCatalogView"
+ icon="icons/uiCustom.gif"
+ id="org.eclipse.emf.facet.custom.ui.view.catalog"
+ name="%view.customizations"
+ restorable="true">
+ </view>
+ </extension>
+ <extension
+ point="org.eclipse.emf.facet.efacet.core.queryImplementationRegistration">
+ <queryImplementationRegistration
+ class="org.eclipse.emf.facet.custom.ui.internal.query.URIImageQueryImplementationFactory">
+ </queryImplementationRegistration>
+ </extension>
+</plugin>
|