Download this file

plugin.xml    37 lines (36 with data), 1.1 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.menus">
<menuContribution
allPopups="false"
locationURI="menu:org.eclipse.ui.main.menu?after=additions">
<menu
id="edu.teco.tacet.menu.developing"
label="Developing"
mnemonic="d">
<command
commandId="edu.teco.tacet.mock.commands.createMockData"
label="Create mock data"
mnemonic="m"
style="push">
</command>
</menu>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
class="edu.teco.tacet.ui.mock.MockHandler"
commandId="edu.teco.tacet.mock.commands.createMockData">
</handler>
</extension>
<extension
point="org.eclipse.ui.commands">
<command
id="edu.teco.tacet.mock.commands.createMockData"
name="Create mock data">
</command>
</extension>
</plugin>