-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
52 lines (46 loc) · 1.43 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<runtime>
<library name="lib/mvcStruct.jar"/>
</runtime>
<extension
point="org.eclipse.ui.views">
<category
id="com.plugin.ant.MvcPluginCategory"
name="MvcPluginCategory">
</category>
<view
category="com.plugin.ant.MvcPluginCategory"
class="com.plugin.ant.views.MvcAnalyzeView"
icon="icons/sample.png"
id="com.plugin.ant.views.MvcAnalyzeView"
name="Mvc Analyze"
restorable="false">
</view>
</extension>
<extension point="org.eclipse.ui.popupMenus">
<objectContribution
adaptable="true"
id="com.plugin.ant.popupMenu"
name="MVC Project Analyze"
objectClass="org.eclipse.core.resources.IResource">
<menu
id="com.plugin.ant.popupMenu.analyzeMenu"
path="additions"
label="Analyze">
<separator
name="additions">
</separator>
</menu>
<action
class="com.plugin.ant.actions.MvcAnalyzeAction"
icon="icons/sample.png"
enablesFor="1"
menubarPath="com.plugin.ant.popupMenu.analyzeMenu"
id="com.plugin.ant.actions.MvcAnalyzeAction"
label="MVC Project Analyze">
</action>
</objectContribution>
</extension>
</plugin>