forked from rzwitserloot/lombok.eclipseplugin
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplugin.xml
26 lines (26 loc) · 973 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ltk.core.refactoring.refactoringContributions">
<contribution
class="lombok.eclipse.refactoring.LombokRefactoringContribution"
id="lombok.eclipse.refactoring.tolombok">
</contribution>
</extension>
<extension
point="org.eclipse.ui.popupMenus">
<objectContribution
adaptable="false"
id="lombok.eclipse.refactoring.contribution"
objectClass="org.eclipse.jdt.core.IJavaElement">
<action
class="lombok.eclipse.actions.LombokRefactorAction"
id="lombok.eclipse.refactoring.tolombok"
label="%refactor.action.label"
menubarPath="org.eclipse.jdt.ui.refactoring.menu/codingGroup"
style="push">
</action>
</objectContribution>
</extension>
</plugin>