-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplugin.xml
33 lines (32 loc) · 1012 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.menus">
<menuContribution
allPopups="false"
locationURI="toolbar:org.eclipse.ui.main.toolbar">
<toolbar
id="wessbas.ui.toolbar">
<command
commandId="org.fortiss.pmwt.wex.ui.eclipse.commands.ShowUI"
icon="resources/icons/eclipse_16x16.png"
id="ShowUI"
label="Show WESSBAS UI"
style="push">
</command>
</toolbar>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.handlers">
</extension>
<extension
point="org.eclipse.ui.commands">
<command
defaultHandler="org.fortiss.pmwt.wex.ui.eclipse.handler.ShowUIHandler"
id="org.fortiss.pmwt.wex.ui.eclipse.commands.ShowUI"
name="Show UI">
</command>
</extension>
</plugin>