root / tmp / org.txm.tests.rcp / plugin.xml @ 2519
History | View | Annotate | Download (949 Bytes)
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
---|---|
2 |
<?eclipse version="3.4"?>
|
3 |
<plugin>
|
4 |
<extension
|
5 |
point="org.eclipse.ui.editors"> |
6 |
<editor
|
7 |
class="org.txm.tests.rcp.editor.TestsEditor" |
8 |
default="false" |
9 |
id="org.txm.tests.rcp.editor.TestsEditor" |
10 |
name="Tests"> |
11 |
</editor>
|
12 |
</extension>
|
13 |
<extension
|
14 |
point="org.eclipse.ui.menus"> |
15 |
<menuContribution
|
16 |
allPopups="false" |
17 |
locationURI="menu:menu.tools"> |
18 |
<command
|
19 |
commandId="org.txm.tests.rcp.command.OpenTestsBench" |
20 |
style="push"> |
21 |
</command>
|
22 |
</menuContribution>
|
23 |
</extension>
|
24 |
<extension
|
25 |
point="org.eclipse.ui.commands"> |
26 |
<command
|
27 |
defaultHandler="org.txm.tests.rcp.command.OpenTestsBench" |
28 |
id="org.txm.tests.rcp.command.OpenTestsBench" |
29 |
name="Open Tests bench"> |
30 |
</command>
|
31 |
</extension>
|
32 |
|
33 |
</plugin>
|