-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
156 lines (151 loc) · 5.26 KB
/
plugin.xml
File metadata and controls
156 lines (151 loc) · 5.26 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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension-point id="com.offensive360.sastplugin" name="%extension-point.name" />
<extension
point="org.eclipse.ui.views">
<category
name="%category.name"
id="o360sastplugin.Category">
</category>
<view
category="o360sastplugin.Category"
class="com.o360.sastplugin.views.ReportView"
icon="icons/Offensive360.png"
id="o360sastplugin.views.ReportView"
inject="true"
name="%view.name"
restorable="true">
</view>
</extension>
<extension
point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension
targetID="org.eclipse.jdt.ui.JavaPerspective">
<view
closeable="false"
id="o360sastplugin.views.ReportView"
minimized="true"
moveable="false"
ratio="0.88"
relationship="bottom"
relative="org.eclipse.ui.views.ProblemView"
standalone="true"
visible="true">
</view>
</perspectiveExtension>
</extension>
<extension
point="org.eclipse.help.contexts">
<contexts
file="META-INF/contexts.xml">
</contexts>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
allPopups="false"
locationURI="popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu">
<menu
id="menuO360"
label="%menu.label"
tooltip="%menu.tooltip"
icon="icons/Offensive360.png">
<command
commandId="o360sastplugin.commands.scanCommand"
id="scancommand"
label="%command.label"
icon="icons/Offensive360.png"
style="push"
tooltip="%command.tooltip">
</command>
<command
commandId="o360sastplugin.commands.settingsCommand"
id="settingscommand"
label="%command.label.0"
icon="icons/settings.png"
style="push"
tooltip="%command.tooltip.0">
</command>
</menu>
</menuContribution>
<menuContribution
locationURI="toolbar:org.eclipse.ui.trim.status">
<toolbar
id="org.eclipse.ui.examples.contributions.verticalTrim">
<command
commandId="o360sastplugin.commands.scanCommand"
id="O360 Tool"
icon="icons/Offensive360.png"
label="O360 Scan"
style="push"
tooltip="%command.tooltip">
</command>
<command
commandId="o360sastplugin.commands.settingsCommand"
icon="icons/settings.png"
id="O360 Settings Tool"
label="O360 Settings"
style="push"
tooltip="%command.tooltip.0">
</command>
</toolbar>
</menuContribution>
<menuContribution
allPopups="false"
locationURI="popup:org.eclipse.jdt.ui.PackageExplorer">
<menu
id="menuO360"
label="%menu.label.0"
tooltip="%menu.tooltip.0"
icon="icons/Offensive360.png">
</menu>
</menuContribution>
<menuContribution
allPopups="false"
locationURI="toolbar:org.eclipse.ui.main.toolbar">
<toolbar
id="O360SastPlugin.toolbar1"
label="O360 ToolBar">
</toolbar>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.commands">
<command
defaultHandler="com.o360.sastplugin.handlers.ScanHandler"
description="%command.description"
id="o360sastplugin.commands.scanCommand"
name="%command.name">
</command>
<command
defaultHandler="com.o360.sastplugin.handlers.SettingsHandler"
description="%command.description.0"
id="o360sastplugin.commands.settingsCommand"
name="%command.name.0">
</command>
</extension>
<extension
point="org.eclipse.ui.bindings">
<key
commandId="o360sastplugin.commands.scanCommand"
contextId="org.eclipse.ui.contexts.window"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="CTRL+ALT+S">
</key>
<key
commandId="o360sastplugin.commands.settingsCommand"
contextId="org.eclipse.ui.contexts.window"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="CTRL+ALT+D">
</key>
</extension>
<extension
id="com.o360.plugin.startup"
name="O360 Startup"
point="org.eclipse.ui.startup">
<startup
class="com.o360.sastplugin.Startup">
</startup>
</extension>
</plugin>