-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
93 lines (91 loc) · 3.41 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.views">
<category
name="BugDoctor"
id="ca.usask.cs.srlab.bugdoctor">
</category>
<view
name="BugDoctor"
icon="icons/bugdoctor.png"
category="ca.usask.cs.srlab.bugdoctor"
class="ca.usask.cs.srlab.bugdoctor.views.BugDoctorDashboardView"
id="ca.usask.cs.srlab.bugdoctor.views.BugDoctorDashboardView">
</view>
</extension>
<extension point="org.eclipse.ui.commands">
<category
id="ca.usask.cs.srlab.bugdoctor.category"
description="This is a category for command"
name="commandcategory">
</category>
<command
categoryId="ca.usask.cs.srlab.bugdoctor.category"
defaultHandler="ca.usask.cs.srlab.bugdoctor.handlers.ShowBugDoctorHandler"
id="ca.usask.cs.srlab.bugdoctor.ShowBugDoctor"
name="Enable BugDoctor">
</command>
</extension>
<extension point="org.eclipse.ui.menus">
<menuContribution
allPopups="false"
locationURI="popup:org.eclipse.ui.popup.any?after=additions">
<menu label="BugDoctor" icon="icons/bugdoctor.png" id="ca.usask.cs.srlab.bugdoctor.popupmenu">
<command commandId="ca.usask.cs.srlab.bugdoctor.ShowBugDoctor"
id="ca.usask.cs.srlab.bugdoctor.ShowBugDoctorPopMenu"
label="Enable BugDoctor"
icon="icons/enablesc16.png"
style="radio">
</command>
</menu>
</menuContribution>
<menuContribution
locationURI="menu:org.eclipse.ui.main.menu?after=additions">
<menu
icon="icons/bugdoctor.png"
id="ca.usask.cs.srlab.bugdoctor.mainmenu"
label="BugDoctor">
<command commandId="ca.usask.cs.srlab.bugdoctor.ShowBugDoctor"
id="ca.usask.cs.srlab.bugdoctor.ShowBugDoctorMainMenu"
label="Enable BugDoctor"
icon="icons/enablesc16.png"
style="push">
</command>
</menu>
</menuContribution>
</extension>
<extension point="org.eclipse.ui.handlers">
<handler
class="ca.usask.cs.srlab.bugdoctor.handlers.ShowBugDoctorHandler"
commandId="ca.usask.cs.srlab.bugdoctor.ShowBugDoctor">
</handler>
</extension>
<extension
point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension
targetID="org.eclipse.jdt.ui.JavaPerspective">
<view
ratio="0.5"
relative="org.eclipse.ui.views.TaskList"
relationship="right"
id="ca.usask.cs.srlab.bugdoctor.views.BugDoctorDashboardView">
</view>
</perspectiveExtension>
</extension>
<extension
point="org.eclipse.help.contexts">
<contexts
file="contexts.xml">
</contexts>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
class="ca.usask.cs.srlab.bugdoctor.WorkbenchPreferencePage"
id="ca.usask.cs.srlab.bugdoctor.preferencePage"
name="BugDoctor">
</page>
</extension>
</plugin>