- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
Latest commit
80 lines (80 loc) · 2.56 KB
/
Copy pathplugin.xml
File metadata and controls
80 lines (80 loc) · 2.56 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
id="scanBuilder"
name="Scan Project Builder"
point="org.eclipse.core.resources.builders">
<builder
hasNature="true">
<run
class="com.shredcode.scanplugin.builder.ScanBuilder">
</run>
</builder>
</extension>
<extension
id="scanNature"
name="Scan Project Nature"
point="org.eclipse.core.resources.natures">
<requires-nature
id="org.eclipse.jdt.core.javanature">
</requires-nature>
<runtime>
<run
class="com.shredcode.scanplugin.builder.ScanNature">
</run>
</runtime>
<builder
id="ScanPlugin.scanBuilder">
</builder>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
class="com.shredcode.scanplugin.preferences.ScanPreferencePage"
id="com.shredcode.scanplugin.preferences.ScanPreferencePage"
name="Scan Annotations">
</page>
</extension>
<extension
point="org.eclipse.core.runtime.preferences">
<initializer
class="com.shredcode.scanplugin.preferences.PreferenceInitializer">
</initializer>
</extension>
<extension
point="org.eclipse.ui.popupMenus">
<objectContribution
adaptable="true"
id="ScanPlugin.contribution1"
nameFilter="*"
objectClass="org.eclipse.core.resources.IProject">
<action
class="com.shredcode.scanplugin.builder.ToggleNatureAction"
enablesFor="+"
id="ScanPlugin.addRemoveNatureAction"
label="Add/Remove Unused Annotation Scan Nature"
menubarPath="additions">
</action>
</objectContribution>
</extension>
<extension
id="unusedProblem"
name="Unused Problem"
point="org.eclipse.core.resources.markers">
<super
type="org.eclipse.core.resources.problemmarker">
</super>
<supertype="org.eclipse.core.resources.textmarker"></super>
<persistent
value="true">
</persistent>
</extension>
<extension
point="org.eclipse.ui.ide.markerResolution">
<markerResolutionGenerator
markerType="ScanPlugin.unusedProblem"
class="com.shredcode.scanplugin.resolutions.AnnotationNotUsedResolutionGenerator">
</markerResolutionGenerator>
</extension>
</plugin>