-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathplugin.xml
More file actions
49 lines (43 loc) · 1.39 KB
/
Copy pathplugin.xml
File metadata and controls
49 lines (43 loc) · 1.39 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
<plugin>
<extension
point="org.eclipse.ui.commands">
<command
name="Localização do projeto"
id="p2.submibot.commands.showProjectLocation">
</command>
<command
name="Submeter Projeto"
id="p2.submibot.commands.SubmitProject">
</command>
<command
name="Limpar Cache"
id="p2.submibot.commands.ClearCache">
</command>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
class="p2.submibot.handlers.ProjectLocation"
commandId="p2.submibot.commands.showProjectLocation">
</handler>
<handler
class="p2.submibot.handlers.SubmitProject"
commandId="p2.submibot.commands.SubmitProject">
</handler>
<handler
class="p2.submibot.handlers.ClearCache"
commandId="p2.submibot.commands.ClearCache">
</handler>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu?after=additions">
<menu label="SubmiBot">
<command commandId="p2.submibot.commands.SubmitProject"/>
<command commandId="p2.submibot.commands.showProjectLocation"/>
<command commandId="p2.submibot.commands.ClearCache"/>
</menu>
</menuContribution>
</extension>
</plugin>