-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
341 lines (339 loc) · 11.7 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
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
id="application"
point="org.eclipse.core.runtime.applications">
<application>
<run
class="org.vagabond.rcp.Application">
</run>
</application>
</extension>
<extension
point="org.eclipse.ui.perspectives">
<perspective
name="Perspective"
class="org.vagabond.rcp.Perspective"
id="VagabondRCP.perspective">
</perspective>
</extension>
<extension
point="org.eclipse.ui.views">
<view
class="org.vagabond.rcp.mapview.view.MapGraphView"
id="org.vagabond.rcp.mapview.view.view"
name="Overview"
restorable="true">
</view>
<view
class="org.vagabond.rcp.gui.views.SourceDBView"
id="org.vagabond.rcp.gui.views.sdbview"
name="Source Database">
</view>
<view
class="org.vagabond.rcp.gui.views.TargetDBView"
id="org.vagabond.rcp.gui.views.tdbview"
name="Target Database"
restorable="true">
</view>
<view
class="org.vagabond.rcp.gui.views.ProvenanceView"
id="org.vagabond.rcp.gui.views.provview"
name="Provenance"
restorable="true">
</view>
<view
class="org.vagabond.rcp.gui.views.ExplView"
id="org.vagabond.rcp.gui.views.explview"
name="Explanations"
restorable="true">
</view>
<view
class="org.vagabond.rcp.gui.views.TransView"
id="org.vagabond.rcp.gui.views.transview"
name="Transformations"
restorable="true">
</view>
<view
class="org.vagabond.rcp.gui.views.MappingsView"
id="org.vagabond.rcp.gui.views.mappingsview"
name="Mappings"
restorable="true">
</view>
<view
class="org.vagabond.rcp.gui.views.CorrView"
id="org.vagabond.rcp.gui.views.corrview"
name="Correspondences"
restorable="true">
</view>
<view
class="org.vagabond.rcp.gui.views.ExplRankView"
id="org.vagabond.rcp.gui.views.explrankview"
name="Explanations Ranked"
restorable="true">
</view>
</extension>
<extension
point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension
targetID="*">
<view
id="org.vagabond.rcp.mapview.view.view"
minimized="false"
moveable="true"
relationship="left"
relative="org.eclipse.ui.editorss"
standalone="false">
</view>
<view
id="org.vagabond.rcp.gui.views.sdbview"
minimized="false"
moveable="true"
relationship="right"
relative="org.vagabond.rcp.mapview.view.view"
standalone="true">
</view>
<view
id="org.vagabond.rcp.gui.views.tdbview"
minimized="false"
moveable="true"
relationship="bottom"
relative="org.vagabond.rcp.gui.views.sdbview">
</view>
<view
id="org.vagabond.rcp.gui.views.provview"
minimized="false"
moveable="true"
relationship="stack"
relative="org.vagabond.rcp.gui.views.sdbview">
</view>
<view
id="org.vagabond.rcp.gui.views.explview"
minimized="false"
moveable="true"
ratio="0.75f"
relationship="bottom"
relative="org.vagabond.rcp.mapview.view.view"
standalone="false">
</view>
<view
id="org.vagabond.rcp.gui.views.explrankview"
minimized="false"
relationship="stack"
relative="org.vagabond.rcp.gui.views.explview">
</view>
<view
id="org.vagabond.rcp.gui.views.transview"
minimized="false"
moveable="true"
relationship="stack"
relative="org.vagabond.rcp.gui.views.explview">
</view>
<view
id="org.vagabond.rcp.gui.views.mappingsview"
minimized="false"
moveable="true"
relationship="stack"
relative="org.vagabond.rcp.gui.views.explview">
</view>
<view
id="org.vagabond.rcp.gui.views.corrview"
minimized="false"
moveable="true"
relationship="stack"
relative="org.vagabond.rcp.gui.views.explview">
</view>
</perspectiveExtension>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="menu:org.eclipse.ui.main.menu">
<menu
label="File">
<command
commandId="org.eclipse.ui.file.exit"
label="Quit"
style="push"
tooltip="Quit Vagabond">
</command>
</menu>
<menu
id="connectionMenu"
label="Actions">
<command
commandId="org.vagabond.rcp.commands.loadscenario"
label="Load Scenario"
style="push">
</command>
<command
commandId="org.vagabond.rcp.commands.start"
label="Load Default Scenario"
style="push">
</command>
</menu>
<menu
id="optionsMenu"
label="Options">
<command
commandId="org.vagabond.rcp.commands.changenavigationstyle"
label="Change Navigation Style"
style="toggle">
</command>
<command
commandId="org.eclipse.ui.window.preferences"
label="Preferences"
style="push">
</command>
</menu>
</menuContribution>
<menuContribution
locationURI="toolbar:org.eclipse.ui.main.toolbar">
<toolbar
id="org.vagabond.rcp.toolbars.VivienVagabond"
label="VagabondToolBar">
<command
commandId="org.vagabond.rcp.commands.changenavigationstyle"
icon="icons/small_googles.png"
label="toggle"
style="toggle"
tooltip="Change Navigation Style">
</command>
<command
commandId="org.vagabond.rcp.commands.clearselection"
icon="icons/small_process-stop.png"
label="Clear all selections"
style="push">
</command>
<separator
name="VivienVagabond.separator1"
visible="true">
</separator>
<command
commandId="org.vagabond.rcp.commands.loadscenario"
icon="icons/small_load.png"
label="Load Scenario"
style="push"
tooltip="Load a mapping scenario from an XML file">
</command>
<command
commandId="org.vagabond.rcp.commands.start"
icon="icons/small_go-next.png"
label="Load Default Scenario"
style="push"
tooltip="Load the scenario set as default in the preferences">
</command>
<command
commandId="org.eclipse.ui.window.preferences"
icon="icons/small_preferences.png"
label="Preferences"
style="push"
tooltip="Edit Preferences">
</command>
<separator
name="VivienVagabond.separator2"
visible="true">
</separator>
<command
commandId="org.vagabond.rcp.commands.switchranking"
icon="icons/small_view-sort.png"
label="Activate/Deactivate Ranking"
style="toggle"
tooltip="Activate or Deactivate the Ranking of Explanations">
</command>
</toolbar>
</menuContribution>
</extension>
<extension
id="product"
point="org.eclipse.core.runtime.products">
<product
application="VagabondRCP.application"
name="Vagabond">
<property
name="windowImages"
value="icons/alt_window_16.gif,icons/alt_window_32.gif">
</property>
<property
name="appName"
value="Vagabond">
</property>
</product>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
class="org.vagabond.rcp.preferences.SchemaSettings"
id="org.vagabond.rcp.preferences.schemasettings"
name="Schema Settings">
</page>
<page
class="org.vagabond.rcp.preferences.DBSettings"
id="org.vagabond.rcp.preferences.dbsettings"
name="Connection Settings">
</page>
</extension>
<extension
point="org.eclipse.ui.commands">
<command
defaultHandler="org.vagabond.rcp.commands.StartHandler"
id="org.vagabond.rcp.commands.start"
name="Start">
</command>
<command
defaultHandler="org.vagabond.rcp.commands.ChangeNavigationStyleHandler"
description="change the type of navigation (drill down vs. selection)"
id="org.vagabond.rcp.commands.changenavigationstyle"
name="ChangeNaviagionStyle">
</command>
<command
defaultHandler="org.vagabond.rcp.commands.LoadScenarioHandler"
description="Load mapping scenario from XML file"
id="org.vagabond.rcp.commands.loadscenario"
name="LoadScenario">
</command>
<command
defaultHandler="org.vagabond.rcp.commands.ClearSelectionHandler"
description="Clear all selection and or navigation"
id="org.vagabond.rcp.commands.clearselection"
name="ClearAllSelections">
</command>
<command
defaultHandler="org.vagabond.rcp.commands.SwitchRankingHandler"
description="Activate/Deactivate Ranking"
id="org.vagabond.rcp.commands.switchranking"
name="SwitchRanking">
</command>
</extension>
<extension
point="com.quantum.Quantum.tableviewmanager">
<manager
class="org.vagabond.rcp.model.TableViewManager">
</manager>
</extension>
<extension
point="org.eclipse.ui.activities">
<category
description="Debugging a mapping scenario"
id="org.vagabond.rcp.activity.category.mapdebug.category.mapdebug"
name="MappingScenarioDebugging">
</category>
<activity
id="org.vagabond.rcp.activity.standard"
name="VagabondNormalActivity">
</activity>
<categoryActivityBinding
activityId="org.vagabond.rcp.activity.standard"
categoryId="org.vagabond.rcp.activity.category.mapdebug.category.mapdebug">
</categoryActivityBinding>
<activityPatternBinding
activityId="org.vagabond.rcp.activity.standard"
pattern=".*eclipse.*/.*">
</activityPatternBinding>
<activityPatternBinding
activityId="org.vagabond.rcp.activity.standard"
pattern="org\.eclipse\.ui\.editors/org\.eclipse\.ui\.edit\.text\.goto/.*">
</activityPatternBinding>
</extension>
</plugin>