-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
129 lines (117 loc) · 4.17 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<!-- Defining commands for review tasks -->
<extension
point="org.eclipse.ui.commands">
<category
id="JDTReviewCategory"
name="JDT Review">
</category>
<command
categoryId="JDTReviewCategory"
name="Run JDT Review"
id="JDTReviewCommand">
</command>
<command
categoryId="JDTReviewCategory"
name="Get Workspace Stats"
id="SourceCountCommand">
</command>
</extension>
<!-- Defining handlers to execute review tasks -->
<extension
point="org.eclipse.ui.handlers">
<handler
class="org.unnivp.jdtstaticanalysis.handlers.JDTReviewHandler"
commandId="JDTReviewCommand">
</handler>
<handler
class="org.unnivp.jdtstaticanalysis.handlers.SourceCodeCountHandler"
commandId="SourceCountCommand">
</handler>
</extension>
<extension
point="org.eclipse.ui.menus">
<!-- Creating menu and sub-menu items to invoke review tasks -->
<menuContribution
locationURI="menu:org.eclipse.ui.main.menu?after=additions">
<menu
id="JDTReviewMenu"
label="JDT Review"
mnemonic="J">
<command
commandId="JDTReviewCommand"
id="JDTReviewMenuItem"
mnemonic="R">
</command>
<command
commandId="SourceCountCommand"
id="SourceCountMenuItem"
mnemonic="S">
</command>
</menu>
</menuContribution>
<!-- Creating toolbar items to invoke review tasks -->
<menuContribution
locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions">
<toolbar
id="JDTReviewToolbar">
<command
id="JDTReviewToolbarItem"
commandId="JDTReviewCommand"
icon="icons/suppress_warning.png"
tooltip="Run JDT Review">
</command>
<command
id="SourceCountToolbarItem"
commandId="SourceCountCommand"
icon="icons/jdt-review.png"
tooltip="Get Workspace Stats">
</command>
</toolbar>
</menuContribution>
</extension>
<!-- Creating custom marker to mark the review results -->
<extension
id="jdt.review.marker"
name="JDT Review Markers"
point="org.eclipse.core.resources.markers">
<persistent value="true" />
<super type="org.eclipse.core.resources.textmarker" />
<attribute name="Name" />
</extension>
<!-- Creating new marker view for displaying the review results -->
<extension
point="org.eclipse.ui.views">
<view
class="org.unnivp.jdtstaticanalysis.markers.JDTReviewMarkerView"
icon="icons/jdt-review.png"
id="JDTReviewMarkerView"
name="JDT Review Results">
</view>
</extension>
<!-- Creating support extension for marker view columns -->
<extension
point="org.eclipse.ui.ide.markerSupport">
<markerField
class="org.unnivp.jdtstaticanalysis.markers.ProjectField"
id="JDTReview.ProjectField"
name="Project">
</markerField>
<markerContentGenerator
id="JDTReviewMarkerGenerator"
name="JDT Review Marker Generator">
<markerTypeReference
id="jdt.review.marker"/>
<markerFieldReference
id="org.eclipse.ui.ide.descriptionField"/>
<markerFieldReference
id="org.eclipse.ui.ide.resourceField"/>
<markerFieldReference
id="JDTReview.ProjectField"/>
<markerFieldReference
id="org.eclipse.ui.ide.locationField"/>
</markerContentGenerator>
</extension>
</plugin>