-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathplugin.xml
More file actions
executable file
·55 lines (54 loc) · 1.96 KB
/
plugin.xml
File metadata and controls
executable file
·55 lines (54 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.graphiti.ui.diagramTypes">
<diagramType
name="ActorOriented Diagram Type"
type="actorOriented"
id="actorOriented.actorOrientedDiagramType">
</diagramType>
</extension>
<extension
point="org.eclipse.graphiti.ui.diagramTypeProviders">
<diagramTypeProvider
name="ActorOriented Diagram Type Provider"
class="org.eclipse.actor.oriented.diagram.ActorOrientedDiagramTypeProvider"
id="actorOriented.actorOrientedDiagramTypeProvider">
<diagramType
id="actorOriented.actorOrientedDiagramType">
</diagramType>
</diagramTypeProvider>
</extension>
<extension
point="org.eclipse.ui.views.properties.tabbed.propertyContributor">
<propertyContributor
contributorId="actorOriented.PropertyContributor">
<propertyCategory
category="AO"></propertyCategory>
</propertyContributor>
</extension>
<extension
point="org.eclipse.ui.views.properties.tabbed.propertySections">
<propertySections
contributorId="actorOriented.PropertyContributor">
<propertySection
class="org.eclipse.actor.oriented.property.AOEClassSection"
filter="org.eclipse.actor.oriented.property.AOEClassFilter"
id="ao.main.tab.emfclass"
tab="ao.main.tab">
</propertySection>
</propertySections>
</extension>
<extension
point="org.eclipse.ui.views.properties.tabbed.propertyTabs">
<propertyTabs
contributorId="actorOriented.PropertyContributor">
<propertyTab
category="AO"
id="ao.main.tab"
label="Main">
</propertyTab>
</propertyTabs>
</extension>
</plugin>