Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.etrice.ui.behavior/plugin.xml')
-rw-r--r--plugins/org.eclipse.etrice.ui.behavior/plugin.xml51
1 files changed, 51 insertions, 0 deletions
diff --git a/plugins/org.eclipse.etrice.ui.behavior/plugin.xml b/plugins/org.eclipse.etrice.ui.behavior/plugin.xml
new file mode 100644
index 000000000..48e585b8e
--- /dev/null
+++ b/plugins/org.eclipse.etrice.ui.behavior/plugin.xml
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.4"?>
+<plugin>
+ <extension
+ point="org.eclipse.graphiti.ui.diagramTypes">
+ <diagramType
+ id="org.eclipse.etrice.ui.behavior.diagramType"
+ name="ROOM Behavior Diagram Type"
+ type="room.behavior">
+ </diagramType>
+ </extension>
+ <extension
+ point="org.eclipse.graphiti.ui.diagramTypeProviders">
+ <diagramTypeProvider
+ class="org.eclipse.etrice.ui.behavior.DiagramTypeProvider"
+ id="org.eclipse.etrice.ui.behavior.diagramTypeProvider"
+ name="ROOM Behavior Editor">
+ <diagramType
+ id="org.eclipse.etrice.ui.behavior.diagramType">
+ </diagramType>
+ <imageProvider
+ id="org.eclipse.etrice.ui.behavior.ImageProvider">
+ </imageProvider>
+ </diagramTypeProvider>
+ </extension>
+ <extension
+ point="org.eclipse.ui.editors">
+ <editor
+ class="org.eclipse.etrice.ui.behavior.editor.BehaviorEditor"
+ contributorClass="org.eclipse.graphiti.ui.editor.DiagramEditorActionBarContributor"
+ default="true"
+ extensions="behavior"
+ icon="icons/Behavior.gif"
+ id="org.eclipse.etrice.ui.behavior.editor.BehaviorEditor"
+ matchingStrategy="org.eclipse.graphiti.ui.editor.DiagramEditorFactory$DiagramEditorMatchingStrategy"
+ name="ROOM Behavior Editor">
+ <contentTypeBinding
+ contentTypeId="org.eclipse.graphiti.content.diagram">
+ </contentTypeBinding>
+ </editor>
+ </extension>
+
+ <extension
+ point="org.eclipse.graphiti.ui.imageProviders">
+ <imageProvider
+ class="org.eclipse.etrice.ui.behavior.ImageProvider"
+ id="org.eclipse.etrice.ui.behavior.ImageProvider">
+ </imageProvider>
+ </extension>
+
+</plugin>

Back to the top