-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
178 lines (176 loc) · 6.72 KB
/
plugin.xml
File metadata and controls
178 lines (176 loc) · 6.72 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.commands">
<category
name="%enoEclipse.command.EnoEclipse.name"
id="enoeclipse.commands.EnoEclipse">
</category>
<command
name="%enoEclipse.command.Connect.name"
categoryId="enoeclipse.commands.EnoEclipse"
id="enoeclipse.commands.EnoConnectCommand">
</command>
<command
name="%enoEclipse.command.Disconnect.name"
categoryId="enoeclipse.commands.EnoEclipse"
id="enoeclipse.commands.EnoDisconnectCommand">
</command>
<command
name="%enoEclipse.command.Import.name"
categoryId="enoeclipse.commands.EnoEclipse"
id="enoeclipse.commands.EnoImportCommand">
</command>
<command
name="%enoEclipse.command.Update.name"
categoryId="enoeclipse.commands.EnoEclipse"
id="enoeclipse.commands.EnoUpdateCommand">
</command>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
commandId="enoeclipse.commands.EnoConnectCommand"
class="org.enoeclipse.handlers.EnoConnectHandler">
</handler>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
commandId="enoeclipse.commands.EnoDisconnectCommand"
class="org.enoeclipse.handlers.EnoDisconnectHandler">
</handler>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
commandId="enoeclipse.commands.EnoImportCommand"
class="org.enoeclipse.handlers.EnoImportHandler">
</handler>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
commandId="enoeclipse.commands.EnoUpdateCommand"
class="org.enoeclipse.handlers.EnoUpdateHandler">
</handler>
</extension>
<extension
point="org.eclipse.ui.bindings">
<key
commandId="enoeclipse.commands.EnoConnectCommand"
contextId="org.eclipse.ui.contexts.window"
sequence="M1+6"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration">
</key>
</extension>
<extension
point="org.eclipse.ui.bindings">
<key
commandId="enoeclipse.commands.EnoDisconnectCommand"
contextId="org.eclipse.ui.contexts.window"
sequence="M1+7"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration">
</key>
</extension>
<extension
point="org.eclipse.ui.bindings">
<key
commandId="enoeclipse.commands.EnoImportCommand"
contextId="org.eclipse.ui.contexts.window"
sequence="M1+8"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration">
</key>
</extension>
<extension
point="org.eclipse.ui.bindings">
<key
commandId="enoeclipse.commands.EnoUpdateCommand"
contextId="org.eclipse.ui.contexts.window"
sequence="M1+9"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration">
</key>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="menu:org.eclipse.ui.main.menu?after=additions">
<menu
label="%enoEclipse.menu.EnoEclipse.label"
mnemonic="%enoEclipse.menu.EnoEclipse.mnemonic"
id="enoeclipse.menus.EnoEclipseMenu">
<command
commandId="enoeclipse.commands.EnoConnectCommand"
mnemonic="%enoEclipse.command.Connect.mnemonic"
id="enoeclipse.menus.EnoConnectCommand">
</command>
<command
commandId="enoeclipse.commands.EnoDisconnectCommand"
mnemonic="%enoEclipse.command.Disconnect.mnemonic"
id="enoeclipse.menus.EnoDisconnectCommand">
</command>
<command
commandId="enoeclipse.commands.EnoImportCommand"
mnemonic="%enoEclipse.command.Import.mnemonic"
id="enoeclipse.menus.EnoImportCommand">
</command>
<command
commandId="enoeclipse.commands.EnoUpdateCommand"
mnemonic="%enoEclipse.command.Update.mnemonic"
id="enoeclipse.menus.EnoUpdateCommand">
</command>
</menu>
</menuContribution>
<menuContribution
locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions">
<toolbar
id="enoeclipse.toolbars.enoEclipseToolbar">
<command
commandId="enoeclipse.commands.EnoConnectCommand"
icon="icons/connect.gif"
tooltip="%enoEclipse.command.Connect.tooltip"
id="enoeclipse.toolbars.EnoConnectCommand">
</command>
<command
commandId="enoeclipse.commands.EnoDisconnectCommand"
icon="icons/disconnect.gif"
tooltip="%enoEclipse.command.Disconnect.tooltip"
id="enoeclipse.toolbars.EnoDisconnectCommand">
</command>
<command
commandId="enoeclipse.commands.EnoImportCommand"
icon="icons/import.gif"
tooltip="%enoEclipse.command.Import.tooltip"
id="enoeclipse.toolbars.EnoImportCommand">
</command>
<command
commandId="enoeclipse.commands.EnoUpdateCommand"
icon="icons/update.gif"
tooltip="%enoEclipse.command.Update.tooltip"
id="enoeclipse.toolbars.EnoUpdateCommand">
</command>
</toolbar>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
name="%enoEclipse.page.EnoEclipse.name"
class="org.enoeclipse.preferences.EnoEclipsePreference"
id="enoeclipse.preferences.EnoEclipsePreference">
</page>
<page
category="enoeclipse.preferences.EnoEclipsePreference"
class="org.enoeclipse.preferences.EnoJPOPreference"
id="enoeclipse.preferences.EnoJPOPreference"
name="%enoEclipse.page.JPOHandling.name">
</page>
</extension>
<extension
point="org.eclipse.core.runtime.preferences">
<initializer
class="org.enoeclipse.preferences.PreferenceInitializer">
</initializer>
</extension>
</plugin>