forked from archimatetool/archi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
160 lines (159 loc) · 6.13 KB
/
plugin.xml
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.7"?>
<plugin>
<extension
point="org.eclipse.ui.editors">
<editor
class="com.archimatetool.canvas.CanvasEditor"
contributorClass="com.archimatetool.canvas.CanvasEditorActionBarContributor"
default="false"
icon="img/canvas-16.png"
id="uk.ac.bolton.archimate.canvas.canvasEditor"
name="%editorCanvas">
</editor>
</extension>
<extension
point="org.eclipse.emf.ecore.generated_package">
<package
class="com.archimatetool.canvas.model.ICanvasPackage"
genModel="model/canvas.genmodel"
uri="http://www.archimatetool.com/archimate/canvas">
</package>
<package
class="com.archimatetool.canvas.model.ICanvasPackage"
genModel="model/canvas.genmodel"
uri="http://www.bolton.ac.uk/archimate/canvas">
</package>
</extension>
<extension
point="org.eclipse.emf.ecore.extension_parser">
<parser
class="com.archimatetool.canvas.model.util.CanvasResourceFactory"
type="archicanvas">
</parser>
</extension>
<extension
point="com.archimatetool.editor.diagramEditorFactory">
<diagramEditorFactory
class="com.archimatetool.canvas.CanvasEditorFactory"
id="com.archimatetool.canvas.canvasEditorFactory">
</diagramEditorFactory>
</extension>
<extension
point="com.archimatetool.editor.labelProvider">
<labelProvider
class="com.archimatetool.canvas.CanvasLabelProvider"
id="com.archimatetool.canvas.labelProvider">
</labelProvider>
</extension>
<extension
point="org.eclipse.ui.views.properties.tabbed.propertyTabs">
<propertyTabs
contributorId="com.archimatetool.editor">
<propertyTab
afterTab="properties.tab"
category="main.category"
id="hint.tab"
indented="false"
label="%propertyTab.label">
</propertyTab>
<propertyTab
afterTab="appearance.tab"
category="appearance.category"
id="image.tab"
indented="true"
label="%propertyTab.label.0">
</propertyTab>
</propertyTabs>
</extension>
<extension
point="org.eclipse.ui.views.properties.tabbed.propertySections">
<propertySections
contributorId="com.archimatetool.editor">
<propertySection
class="com.archimatetool.canvas.propertysections.IconSection"
filter="com.archimatetool.canvas.propertysections.IconSection$Filter"
id="iconSection"
tab="image.tab">
</propertySection>
<propertySection
class="com.archimatetool.canvas.propertysections.HintContentSection"
filter="com.archimatetool.canvas.propertysections.HintContentSection$Filter"
id="hintContentSection"
tab="hint.tab">
</propertySection>
<propertySection
afterSection="textContentSection"
class="com.archimatetool.canvas.propertysections.NotesSection"
filter="com.archimatetool.canvas.propertysections.NotesSection$Filter"
id="notesSection"
tab="main.tab">
</propertySection>
</propertySections>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
allPopups="true"
class="com.archimatetool.canvas.NewCanvasExtensionContributionFactory"
locationURI="popup:uk.ac.bolton.archimate.editor.treeModelView.new_menu?after=new_additions">
</menuContribution>
<menuContribution
allPopups="true"
class="com.archimatetool.canvas.SaveAsCanvasExtensionContributionFactory"
locationURI="popup:uk.ac.bolton.archimate.editor.treeModelView?after=open">
</menuContribution>
<menuContribution
allPopups="false"
class="com.archimatetool.canvas.NewModelWithCanvasExtensionContributionFactory"
locationURI="menu:new_menu?after=new_menu.ext">
</menuContribution>
<menuContribution
allPopups="false"
class="com.archimatetool.canvas.NewModelWithCanvasExtensionContributionFactory"
locationURI="menu:com.archimatetool.menu.newDropdown?endof=com.archimatetool.menu.separatorNewDropdown">
</menuContribution>
</extension>
<extension
point="com.archimatetool.help.hints">
<hint
class="com.archimatetool.canvas.model.ICanvasModel"
file="help/hints/canvas_diagram.html"
title="%hint.title">
</hint>
<hint
class="com.archimatetool.canvas.model.ICanvasModelBlock"
file="help/hints/canvas_block.html"
title="%hint.title.0">
</hint>
<hint
class="com.archimatetool.canvas.model.ICanvasModelImage"
file="help/hints/canvas_image.html"
title="%hint.title.1">
</hint>
<hint
class="com.archimatetool.canvas.model.ICanvasModelSticky"
file="help/hints/canvas_sticky.html"
title="%hint.title.2">
</hint>
<hint
class="com.archimatetool.canvas.model.ICanvasModelConnection"
file="help/hints/canvas_connection.html"
title="%hint.title.3">
</hint>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
class="com.archimatetool.canvas.preferences.CanvasPreferencePage"
id="com.archimatetool.canvas.preferences.CanvasPreferencePage"
name="%page.name">
</page>
</extension>
<extension
point="org.eclipse.core.runtime.preferences">
<initializer
class="com.archimatetool.canvas.preferences.PreferenceInitializer">
</initializer>
</extension>
</plugin>