forked from nbarrientos/parrot-eclipse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
103 lines (101 loc) · 3.64 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.commands">
<command
id="es.ctic.parrot.parrot_eclipse.commands.ProcOWL"
name="Process OWL">
</command>
<command
id="es.ctic.parrot.parrot_eclipse.commands.ProcRIF"
name="Process RIF">
</command>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
class="es.ctic.parrot.parrot_eclipse.handlers.ProcOWLHandler"
commandId="es.ctic.parrot.parrot_eclipse.commands.ProcOWL">
</handler>
<handler
class="es.ctic.parrot.parrot_eclipse.handlers.ProcRIFHandler"
commandId="es.ctic.parrot.parrot_eclipse.commands.ProcRIF">
</handler>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="menu:org.eclipse.ui.main.menu?after=additions">
<menu
label="Parrot"
mnemonic="M"
id="es.ctic.parrot.parrot_eclipse.menus.mainMenu">
<command
commandId="es.ctic.parrot.parrot_eclipse.commands.ProcOWL"
icon="icons/parrot_owl.png"
id="es.ctic.parrot.parrot_eclipse.menus.ProcOWL"
label="Process OWL"
style="push">
</command>
<command
commandId="es.ctic.parrot.parrot_eclipse.commands.ProcRIF"
icon="icons/parrot_rif.png"
id="es.ctic.parrot.parrot_eclipse.menus.ProcRIF"
label="Process RIF"
style="push">
</command>
</menu>
</menuContribution>
<menuContribution
locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions">
<toolbar
id="es.ctic.parrot.parrot_eclipse.toolbars.sampleToolbar">
<command
commandId="es.ctic.parrot.parrot_eclipse.commands.ProcOWL"
icon="icons/parrot_owl.png"
id="es.ctic.parrot.parrot_eclipse.menus.ProcOWL"
label="Process OWL"
style="push">
</command>
<command
commandId="es.ctic.parrot.parrot_eclipse.commands.ProcRIF"
icon="icons/parrot_rif.png"
id="es.ctic.parrot.parrot_eclipse.menus.ProcRIF"
label="Process RIF"
style="push">
</command>
</toolbar>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.views">
<category
id="es.ctic.parrot.parrot-eclipse.view-category"
name="Parrot">
</category>
<view
category="es.ctic.parrot.parrot-eclipse.view-category"
class="es.ctic.parrot.parrot_eclipse.views.DocBrowserView"
icon="icons/parrot_owl.png"
id="es.ctic.parrot.parrot-eclipse.browser"
name="Parrot Browser"
restorable="true">
</view>
</extension>
<extension
point="org.eclipse.ui.viewActions">
<viewContribution
id="es.ctic.parrot.parrot-eclipse.DocBrowserViewContribution"
targetID="es.ctic.parrot.parrot-eclipse.browser">
<action
class="es.ctic.parrot.parrot_eclipse.delegates.BackActionDelegate"
icon="icons/sample.gif"
id="es.ctic.parrot.parrot-eclipse.back"
label="Back"
style="push"
toolbarPath="navigation">
</action>
</viewContribution>
</extension>
</plugin>