-
Notifications
You must be signed in to change notification settings - Fork 4
/
plugin.xml
39 lines (36 loc) · 1.1 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.commands">
<category
name="Holmes Commands"
id="org.holmes.plugin.commands.category">
</category>
<command
name="Run Holmes"
categoryId="org.holmes.plugin.commands.category"
id="org.holmes.plugin.commands.runHolmes">
</command>
</extension>
<extension
point="org.eclipse.ui.views">
<view id="org.holmes.plugin.views.HolmesView"
name="Holmes View"
class="org.holmes.plugin.views.HolmesView"
icon="icons/sample.png"/>
</extension>
<extension point="org.eclipse.ui.popupMenus">
<viewerContribution
id="org.eclipse.ui.articles.action.contribution.popup.navigator"
targetID="#CompilationUnitEditorContext">
<action
class="org.holmes.plugin.actions.RunHolmes"
id=""
label="Run Holmes"
icon="icons/holmes.png"
menubarPath="additions">
</action>
</viewerContribution>
</extension>
</plugin>