-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
34 lines (32 loc) · 1.06 KB
/
plugin.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.commands">
<category
id="com.lhq.plugin.transfer.camel.commands.category"
name="Camel Category">
</category>
<command
categoryId="com.lhq.plugin.transfer.camel.commands.category"
id="com.lhq.plugin.transfer.camel.commands.camelCammand"
name="Camel Command">
</command>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
commandId="com.lhq.plugin.transfer.camel.commands.camelCammand"
class="com.lhq.plugin.transfer.camel.handler.CamelHandler">
</handler>
</extension>
<extension
point="org.eclipse.ui.bindings">
<key
commandId="com.lhq.plugin.transfer.camel.commands.camelCammand"
contextId="org.eclipse.ui.contexts.window"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="F10">
</key>
</extension>
</plugin>