Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Tessier2016-01-06 09:30:18 +0000
committerGerrit Code Review @ Eclipse.org2016-01-11 12:53:02 +0000
commit20ee6b0a2d644b3b39cda7dd32e1517710ff1060 (patch)
tree27d6d5cd6a91be2bb04f6ba2ba2dbc05f0697c26 /extraplugins/EFFBD/org.eclipse.papyrus.effbd/plugin.xml
parentdcd120bb3ebc52933b4ecf5e2d498daf3f7866eb (diff)
downloadorg.eclipse.papyrus-20ee6b0a2d644b3b39cda7dd32e1517710ff1060.tar.gz
org.eclipse.papyrus-20ee6b0a2d644b3b39cda7dd32e1517710ff1060.tar.xz
org.eclipse.papyrus-20ee6b0a2d644b3b39cda7dd32e1517710ff1060.zip
Bug 484419 - [Extra-plugin]Create EFFB Diagram
commit for the master Change-Id: Id77f5a0886282c2b5139c6263a5a18d1c0dad53a
Diffstat (limited to 'extraplugins/EFFBD/org.eclipse.papyrus.effbd/plugin.xml')
-rw-r--r--extraplugins/EFFBD/org.eclipse.papyrus.effbd/plugin.xml68
1 files changed, 68 insertions, 0 deletions
diff --git a/extraplugins/EFFBD/org.eclipse.papyrus.effbd/plugin.xml b/extraplugins/EFFBD/org.eclipse.papyrus.effbd/plugin.xml
new file mode 100644
index 00000000000..8cfdabbfb2c
--- /dev/null
+++ b/extraplugins/EFFBD/org.eclipse.papyrus.effbd/plugin.xml
@@ -0,0 +1,68 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.4"?>
+<plugin>
+ <extension
+ point="org.eclipse.papyrus.infra.viewpoints.policy.custom">
+ <contribution
+ file="resource/EffbViewPoint.configuration"
+ original="platform:/plugin/org.eclipse.papyrus.infra.viewpoints.policy/builtin/default.configuration">
+ </contribution>
+ </extension>
+ <extension
+ point="org.eclipse.papyrus.infra.core.papyrusDiagram">
+ <diagramCategory
+ class="org.eclipse.papyrus.effbd.command.CreateEFFBModelCommand"
+ icon="icons/effbd32.png"
+ id="EFFB"
+ label="EFFB">
+ </diagramCategory>
+ </extension>
+ <extension
+ point="org.eclipse.papyrus.infra.newchild">
+ <menuCreationModel
+ model="resource/EFFB.creationmenumodel">
+ </menuCreationModel>
+ </extension>
+ <extension
+ point="org.eclipse.papyrus.infra.elementtypesconfigurations.elementTypeSetConfiguration">
+ <elementTypeSet
+ id="org.eclipse.papyrus.effbd.elementTypeSet"
+ path="resource/EFFB.elementtypesconfigurations">
+ </elementTypeSet>
+ </extension>
+ <extension
+ point="org.eclipse.papyrus.infra.elementtypesconfigurations.elementTypeSetConfiguration">
+ <elementTypeSet
+ id="org.eclipse.papyrus.effbd.graphicalelementTypeSet"
+ path="resource/GraphicalEFFB.elementtypesconfigurations">
+ </elementTypeSet>
+ </extension>
+ <extension point="org.eclipse.papyrus.emf.facet.util.emf.core.modeldeclaration">
+ <modeldeclaration file="resource/effbd.custom"/>
+</extension>
+ <extension
+ point="org.eclipse.papyrus.infra.gmfdiag.common.diagramExpansion">
+ <diagramexpansion
+ model="resource/EFFBD.expansionmodel">
+ </diagramexpansion>
+ </extension>
+ <extension
+ point="org.eclipse.gmf.runtime.common.ui.services.parserProviders">
+ <ParserProvider
+ class="org.eclipse.papyrus.effbd.provider.EFFBParserProvider">
+ <Priority
+ name="High">
+ </Priority>
+ </ParserProvider>
+ </extension>
+ <extension
+ point="org.eclipse.papyrus.uml.extensionpoints.UMLProfile">
+ <profile
+ description="Enhanced Function Flow Block"
+ iconpath="icons/effbd16.png"
+ name="Enhanced Function Flow Block (EFFB)"
+ path="platform:/plugin/org.eclipse.papyrus.effbd/resource/EFFB.profile.uml">
+ </profile>
+ </extension>
+
+</plugin>

Back to the top