-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
executable file
·86 lines (86 loc) · 2.81 KB
/
Copy pathplugin.xml
File metadata and controls
executable file
·86 lines (86 loc) · 2.81 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.commands">
<category
id="Patl4J.commands.category"
name="Patl4J">
</category>
<command
categoryId="Patl4J.commands.category"
id="Patl4J.commands.transform"
name="transform projects">
</command>
<command
categoryId="Patl4J.commands.category"
id="Patl4J.commands.normalize"
name="normalize projects">
</command>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
class="patl4j.normalize.handler.Patl4JNormalizer"
commandId="Patl4J.commands.normalize">
</handler>
<handler
class="patl4j.transform.handler.Patl4JTransformer"
commandId="Patl4J.commands.transform">
</handler>
</extension>
<extension
point="org.eclipse.ui.bindings">
<key
commandId="Patl4J.commands.transform"
contextId="org.eclipse.ui.contexts.window"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M1+6">
</key>
<key
commandId="Patl4J.commands.normalize"
contextId="org.eclipse.ui.contexts.window"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M1+7">
</key>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="menu:org.eclipse.ui.main.menu?after=additions">
<menu
id="Patl4J.menus.sampleMenu"
label="Patl4J"
mnemonic="M">
<command
commandId="Patl4J.commands.transform"
id="Patl4J.menus.transform"
mnemonic="S">
</command>
<command
commandId="Patl4J.commands.normalize"
id="Patl4J.menus.normalize"
mnemonic="F">
</command>
</menu>
</menuContribution>
<menuContribution
locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions">
<toolbar
id="Patl4J.toolbars.sampleToolbar">
<command
commandId="Patl4J.commands.transform"
icon="icons/sample.gif"
id="Patl4J.toolbars.transform"
tooltip="Transform projects with Patl4J">
</command>
<command
commandId="Patl4J.commands.normalize"
icon="icons/sample.gif"
id="Patl4J.toolbars.normalize"
tooltip="Normalize projects with Patl4J">
</command>
</toolbar>
</menuContribution>
</extension>
</plugin>