-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
25 lines (24 loc) · 705 Bytes
/
plugin.xml
File metadata and controls
25 lines (24 loc) · 705 Bytes
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
<?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">
<command
commandId="Assignment.CreateTrip"
label="Create Trip"
style="push">
</command>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.commands">
<command
defaultHandler="org.iiitb.mt2011045.assignment.CreateTripHandler"
id="Assignment.CreateTrip"
name="Assignment.CreateTrip">
</command>
</extension>
</plugin>