-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
33 lines (32 loc) · 1.01 KB
/
plugin.xml
File metadata and controls
33 lines (32 loc) · 1.01 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.commands">
<category
name="%category.name.0"
id="testNameGenerator.commands.category">
</category>
<command
name="%command.name.0"
categoryId="testNameGenerator.commands.category"
id="testNameGenerator.commands.generateusingphrase">
</command>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
commandId="testNameGenerator.commands.generateusingphrase"
class="testnamegenerator.handlers.Convertor">
</handler>
</extension>
<extension
point="org.eclipse.ui.bindings">
<key
commandId="testNameGenerator.commands.generateusingphrase"
contextId="org.eclipse.ui.contexts.window"
sequence="M1+M2+8"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration">
</key>
</extension>
</plugin>