-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
49 lines (47 loc) · 1.53 KB
/
plugin.xml
File metadata and controls
49 lines (47 loc) · 1.53 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.actionSets">
<actionSet
label="Refresh this project action set"
visible="true"
id="refresh_this_project.actionSet">
<!--
<menu
label="Refresh this project"
id="sampleMenu">
<separator
name="sampleGroup">
</separator>
</menu>
-->
<action
class="refresh_this_project.actions.RefreshThisProjectAction"
definitionId="com.han_zhou.refresh_this_project.command"
icon="icons/sample.gif"
id="refresh_this_project.actions.RefreshThisProjectAction"
label="&Refresh this project"
menubarPath="file/sampleGroup"
toolbarPath="sampleGroup"
tooltip="Refresh this project">
</action>
</actionSet>
</extension>
<extension
point="org.eclipse.ui.commands">
<command
id="com.han_zhou.refresh_this_project.command"
name="refresh_this_project_command">
</command>
</extension>
<extension
point="org.eclipse.ui.bindings">
<key
commandId="com.han_zhou.refresh_this_project.command"
contextId="org.eclipse.ui.contexts.window"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="Shift+Ctrl+Z">
</key>
</extension>
</plugin>