forked from eclipse-jdt/eclipse.jdt.ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
82 lines (77 loc) · 3.46 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
<extension point="org.eclipse.ltk.core.refactoring.renameParticipants">
<renameParticipant
class="org.eclipse.ltk.core.refactoring.tests.participants.FailingParticipant"
id="org.eclipse.ltk.core.refactoring.tests.participants.FailingParticipant"
name="%FailingParticipant.name">
<enablement>
<with variable="element">
<instanceof value="org.eclipse.ltk.core.refactoring.tests.participants.Element"/>
</with>
</enablement>
</renameParticipant>
<renameParticipant
class="org.eclipse.ltk.core.refactoring.tests.participants.FailingParticipant2"
id="org.eclipse.ltk.core.refactoring.tests.participants.FailingParticipant2"
name="%FailingParticipant2.name">
<enablement>
<with variable="element">
<instanceof value="org.eclipse.ltk.core.refactoring.tests.participants.Element"/>
</with>
</enablement>
</renameParticipant>
<renameParticipant
class="org.eclipse.ltk.core.refactoring.tests.participants.WorkingParticipant"
id="org.eclipse.ltk.core.refactoring.tests.participants.WorkingParticipant"
name="%WorkingParticipant.name">
<enablement>
<or>
<with variable="element">
<instanceof value="org.eclipse.ltk.core.refactoring.tests.participants.Element"/>
</with>
<with variable="element">
<instanceof value="org.eclipse.ltk.core.refactoring.tests.participants.ElementWorking"/>
</with>
<with variable="element">
<instanceof value="org.eclipse.ltk.core.refactoring.tests.participants.ElementWorkingPre"/>
</with>
<with variable="element">
<instanceof value="org.eclipse.ltk.core.refactoring.tests.participants.ElementWorkingPreAlways"/>
</with>
</or>
</enablement>
</renameParticipant>
<renameParticipant
class="org.eclipse.ltk.core.refactoring.tests.participants.WorkingParticipantPre"
id="org.eclipse.ltk.core.refactoring.tests.participants.WorkingParticipantPre"
name="%WorkingParticipantPre.name">
<enablement>
<or>
<with variable="element">
<instanceof value="org.eclipse.ltk.core.refactoring.tests.participants.ElementWorkingPre"/>
</with>
</or>
</enablement>
</renameParticipant>
<renameParticipant
class="org.eclipse.ltk.core.refactoring.tests.participants.WorkingParticipantPre"
id="org.eclipse.ltk.core.refactoring.tests.participants.WorkingParticipantPreAlways"
name="%WorkingParticipantPreAlways.name">
<enablement>
<or>
<with variable="element">
<instanceof value="org.eclipse.ltk.core.refactoring.tests.participants.ElementWorkingPreAlways"/>
</with>
</or>
</enablement>
</renameParticipant>
</extension>
<extension
point="org.eclipse.ltk.core.refactoring.refactoringContributions">
<contribution
class="org.eclipse.ltk.core.refactoring.tests.history.MockRefactoringContribution"
id="org.eclipse.ltk.core.mock"></contribution>
</extension>
</plugin>