-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathplugin.xml
More file actions
50 lines (49 loc) · 2.02 KB
/
Copy pathplugin.xml
File metadata and controls
50 lines (49 loc) · 2.02 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
<?xml version="1.0" encoding="windows-1252"?>
<?eclipse version="3.0"?>
<plugin>
<extension point="org.eclipse.emf.ecore.generated_package">
<package
uri = "http://www.cognicrypt.de/order/editor/Statemachine"
class = "de.cognicrypt.order.editor.statemachine.StatemachinePackage"
genModel = "model/generated/Statemachine.genmodel" />
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
allPopups="false"
locationURI="popup:de.cognicrypt.core.menu">
<command
commandId="de.cognicrypt.order.editor.runordereditor"
icon="icons/icon_order_editor.png"
label="Run CogniCrypt Order Editor"
style="push">
</command>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.commands">
<command
defaultHandler="de.cognicrypt.order.editor.actions.RunOrderEditorHandler"
id="de.cognicrypt.order.editor.runordereditor"
name="RunOrderEditor">
</command>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
allPopups="false"
locationURI="toolbar:org.eclipse.ui.main.toolbar">
<toolbar
id="de.cognicrypt.toolbar"
label="CogniCrypt">
<command
commandId="de.cognicrypt.order.editor.runordereditor"
icon="icons/icon_order_editor.png"
label="RunOrderEditorToolBar"
style="push"
tooltip="Open Visual Order Editor">
</command>
</toolbar>
</menuContribution>
</extension>
</plugin>