-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
148 lines (142 loc) · 5.72 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.commands">
<category
name="appLariat"
id="com.applariat.plugin.eclipse.commands.category">
</category>
<command
name="Deploy App"
categoryId="com.applariat.plugin.eclipse.commands.category"
id="com.applariat.plugin.eclipse.commands.deployApp">
</command>
<command
name="Get App URL"
categoryId="com.applariat.plugin.eclipse.commands.category"
id="com.applariat.plugin.eclipse.commands.appUrl">
</command>
<command
name="Configure"
categoryId="com.applariat.plugin.eclipse.commands.category"
id="com.applariat.plugin.eclipse.commands.configure">
</command>
<command
name="Logout"
categoryId="com.applariat.plugin.eclipse.commands.category"
id="com.applariat.plugin.eclipse.commands.logout">
</command>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
commandId="com.applariat.plugin.eclipse.commands.deployApp"
class="com.applariat.plugin.eclipse.handlers.SampleHandler">
</handler>
<handler
commandId="com.applariat.plugin.eclipse.commands.appUrl"
class="com.applariat.plugin.eclipse.handlers.UrlHandler">
</handler>
<handler
commandId="com.applariat.plugin.eclipse.commands.configure"
class="com.applariat.plugin.eclipse.handlers.ConfigHandler">
</handler>
<handler
commandId="com.applariat.plugin.eclipse.commands.logout"
class="com.applariat.plugin.eclipse.handlers.LogoutHandler">
</handler>
</extension>
<extension
point="org.eclipse.ui.bindings">
<key
commandId="com.applariat.plugin.eclipse.commands.deployApp"
contextId="org.eclipse.ui.contexts.window"
sequence="M1+4"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration">
</key>
<key
commandId="com.applariat.plugin.eclipse.commands.appUrl"
contextId="org.eclipse.ui.contexts.window"
sequence="M1+5"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration">
</key>
<key
commandId="com.applariat.plugin.eclipse.commands.configure"
contextId="org.eclipse.ui.contexts.window"
sequence="M1+6"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration">
</key>
<key
commandId="com.applariat.plugin.eclipse.commands.logout"
contextId="org.eclipse.ui.contexts.window"
sequence="M1+7"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration">
</key>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="menu:org.eclipse.ui.main.menu?after=additions">
<menu
label="appLariat"
mnemonic="M"
id="com.applariat.plugin.eclipse.menus.sampleMenu">
<command
label="Deploy App"
commandId="com.applariat.plugin.eclipse.commands.deployApp"
mnemonic="S"
id="com.applariat.plugin.eclipse.menus.deployApp">
</command>
<command
label="App URL"
commandId="com.applariat.plugin.eclipse.commands.appUrl"
mnemonic="S"
id="com.applariat.plugin.eclipse.menus.appUrl">
</command>
<command
label="Configure"
commandId="com.applariat.plugin.eclipse.commands.configure"
mnemonic="S"
id="com.applariat.plugin.eclipse.menus.configure">
</command>
<command
label="Logout"
commandId="com.applariat.plugin.eclipse.commands.logout"
mnemonic="S"
id="com.applariat.plugin.eclipse.menus.logout">
</command>
</menu>
</menuContribution>
<menuContribution
locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions">
<toolbar
id="com.applariat.plugin.eclipse.toolbars.sampleToolbar">
<command
commandId="com.applariat.plugin.eclipse.commands.deployApp"
icon="icons/sample.gif"
tooltip="Deploy Application"
id="com.applariat.plugin.eclipse.toolbars.deployApp">
</command>
<command
commandId="com.applariat.plugin.eclipse.commands.appUrl"
icon="icons/sample.gif"
tooltip="Application URL"
id="com.applariat.plugin.eclipse.toolbars.appUrl">
</command>
<command
commandId="com.applariat.plugin.eclipse.commands.configure"
icon="icons/sample.gif"
tooltip="Configure"
id="com.applariat.plugin.eclipse.toolbars.configure">
</command>
<command
commandId="com.applariat.plugin.eclipse.commands.logout"
icon="icons/sample.gif"
tooltip="Logout"
id="com.applariat.plugin.eclipse.toolbars.logout">
</command>
</toolbar>
</menuContribution>
</extension>
</plugin>