forked from ArchieProject/Archie-Smart-IDE
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.xml
More file actions
219 lines (217 loc) · 7.36 KB
/
plugin.xml
File metadata and controls
219 lines (217 loc) · 7.36 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
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.commands">
<category
description="Archie Commands"
id="archie.commands.category"
name="Archie">
</category>
<command
defaultHandler="archie.handlers.CreateNewTimHandler"
id="archie.commands.newTim"
name="Create New TIM">
</command>
<command
defaultHandler="archie.handlers.OpenAutoDetectHandler"
id="archie.commands.autoDetect"
name="Open Automatic Detection View">
</command>
<command
defaultHandler="archie.handlers.OpenPanoramicTrace"
id="archie.commands.panoramicTrace"
name="Panoramic Trace">
</command>
<command
defaultHandler="archie.handlers.OpenGraphViewHandler"
id="archie.commands.openGraphView"
name="Open Draw Me a Picture View">
</command>
<command
defaultHandler="archie.handlers.ToggleMonitoringHandler"
id="archie.commands.monitoring"
name="Toggle Monitoring">
</command>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
allPopups="false"
locationURI="menu:org.eclipse.ui.main.menu?after=help">
<menu
id="archie.menus.ArchieMenu"
label="Archie"
mnemonic="i">
<command
commandId="archie.commands.newTim"
icon="resources/icons/timeditor.png"
label="Traceability Pattern"
style="push"
tooltip="Creates a new TIM file and opens the TIM editor">
</command>
<command
commandId="archie.commands.autoDetect"
icon="resources/icons/search.png"
label="Automatic Detection"
mnemonic="D"
style="push"
tooltip="Open the automatic detection view.">
</command>
<command
commandId="archie.commands.monitoring"
icon="resources/icons/monitoring.png"
label="Toggle Monitoring"
style="toggle"
tooltip="Toggle monitoring on or off">
</command>
<command
commandId="archie.commands.panoramicTrace"
icon="resources/icons/trace.png"
label="Panoramic Trace"
style="push"
tooltip="Open Panoramic Trace View">
</command>
<command
commandId="archie.commands.openGraphView"
icon="resources/icons/graph.png"
label="Draw Me a Picture"
style="push"
tooltip="Opens the view where you can draw graph representations of your projects">
</command>
</menu>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.editors">
<editor
class="archie.editor.TimEditor"
contributorClass="archie.editor.TimEditorActionBarContributor"
default="true"
extensions="tim"
icon="resources/icons/timeditor.png"
id="archie.editors.TimEditor"
name="Traceability Information Model Editor">
</editor>
</extension>
<extension
point="org.eclipse.ui.startup">
<startup></startup>
</extension>
<extension
point="org.eclipse.ui.newWizards">
<category
id="archie.wizards"
name="Archie">
</category>
<wizard
class="archie.wizards.newtim.NewTimWizard"
icon="resources/icons/timeditor.png"
id="archie.wizards.newTimWizard"
name="Traceability Information Model">
</wizard>
</extension>
<extension
point="org.eclipse.ui.views">
<category
name="Archie"
id="archie.views">
</category>
<view
category="archie.views"
class="archie.views.AutoDetectView"
icon="resources/icons/search.png"
id="archie.views.autoDetect"
name="Automatic Detection"
restorable="true">
</view>
<view
category="archie.views"
class="archie.views.GraphView"
icon="resources/icons/graph.png"
id="archie.views.graphView"
name="Draw Me a Picture"
restorable="true">
</view>
<view
category="archie.views"
class="archie.views.PanoramicTraceView"
icon="resources/icons/trace.png"
id="archie.views.panoramicTrace"
name="Panoramic Trace"
restorable="true">
</view>
</extension>
<extension
id="archie.LinkedToTimWarning"
name="Warnings: Accepted Source File(s) Modified"
point="org.eclipse.core.resources.markers">
<super
type="org.eclipse.core.resources.problemmarker">
</super>
<persistent
value="true">
</persistent>
</extension>
<extension
id="archie.TermsTextMarker"
name="Indicator Terms"
point="org.eclipse.core.resources.markers">
<super
type="org.eclipse.core.resources.textmarker">
</super>
<super
type="org.eclipse.core.resources.marker">
</super>
<persistent
value="false">
</persistent>
</extension>
<extension
id="archie.indicatorTermAnnotation"
point="org.eclipse.ui.editors.markerAnnotationSpecification">
<specification
annotationType="archie.indicatorTermAnnotation"
colorPreferenceKey="clcolor"
colorPreferenceValue="162,232,0"
contributesToHeader="true"
highlightPreferenceKey="clhighlight"
highlightPreferenceValue="true"
icon="/resources/icons/timeditor.png"
label="Indicator Term"
overviewRulerPreferenceKey="clruler"
overviewRulerPreferenceValue="true"
textPreferenceKey="cltext"
textPreferenceValue="true"
textStylePreferenceKey="clstyle"
textStylePreferenceValue="BOX"
verticalRulerPreferenceKey="clvertical"
verticalRulerPreferenceValue="true">
</specification>
</extension>
<extension
point="org.eclipse.ui.editors.annotationTypes">
<type
markerSeverity="0"
markerType="archie.TermsTextMarker"
name="archie.indicatorTermAnnotation"
super="org.eclipse.ui.workbench.texteditor.info">
</type>
</extension>
<extension
point="org.eclipse.ui.popupMenus">
<objectContribution
adaptable="true"
id="archie.objectContribution.compilationUnit"
nameFilter="*.java"
objectClass="org.eclipse.jdt.core.ICompilationUnit">
<action
class="archie.handlers.LinkToTIMActionHandler"
icon="resources/icons/timeditor.png"
id="archie.actions.linkToTIM"
label="Link To TIM"
tooltip="Link To Highlighted Node in The TIM">
</action>
</objectContribution>
</extension>
</plugin>