Download this file

plugin.xml    52 lines (51 with data), 1.7 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.commands">
<category
id="classification.commands.category"
name="Classificator Category">
</category>
<command
categoryId="classification.commands.category"
id="classification.commands.classificatorCommand"
name="Classifier">
</command>
<command
categoryId="classification.commands.category"
id="classification.commands.emulatorCommand"
name="Emulator">
</command>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
class="classification.handlers.ClassificatorHandler"
commandId="classification.commands.classificatorCommand">
</handler>
<handler
class="classification.handlers.EmulatorHandler"
commandId="classification.commands.emulatorCommand">
</handler>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="menu:org.eclipse.ui.main.menu?after=additions">
<menu
id="classification.menus.classificatorMenu"
label="Classify"
mnemonic="c">
<command
commandId="classification.commands.classificatorCommand"
id="classification.menus.classificatorCommand">
</command>
<command
commandId="classification.commands.emulatorCommand"
id="classification.menus.emulatorCommand">
</command>
</menu>
</menuContribution>
</extension>
</plugin>