-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplugin.xml
55 lines (49 loc) · 1.67 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
id="nl.ou.refd.markers.dangerMarker"
name = "Refactoring Danger"
point="org.eclipse.core.resources.markers">
<super type="org.eclipse.core.resources.problemmarker"/>
<persistent value="true" />
</extension>
<extension
point="org.eclipse.ui.commands">
<command
defaultHandler="nl.ou.refd.plugin.ui.topbarmenu.PullUpMethodButton"
id="refd.PullUpMethodButton"
name="PullUpMethodButton">
</command>
</extension>
<extension
point="org.eclipse.ui.commands">
<command
defaultHandler="nl.ou.refd.plugin.ui.topbarmenu.CombineMethodsIntoClassButton"
id="refd.CombineMethodsIntoClassButton"
name="CombineMethodsIntoClassButton">
</command>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="menu:org.eclipse.ui.main.menu">
<menu
id="RGW"
label="ReFD">
<command
commandId="refd.PullUpMethodButton"
label="Pull Up Method"
style="push"
tooltip="Pull up a method to one of its superclasses">
</command>
<command
commandId="refd.CombineMethodsIntoClassButton"
label="Combine Methods into Class"
style="push"
tooltip="Combine a number of methods into a newly created class">
</command>
</menu>
</menuContribution>
</extension>
</plugin>