-
Notifications
You must be signed in to change notification settings - Fork 258
Expand file tree
/
Copy pathplugin.xml
More file actions
59 lines (58 loc) · 2.97 KB
/
Copy pathplugin.xml
File metadata and controls
59 lines (58 loc) · 2.97 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
<extension-point id="renameParticipants" name="%renameParticipantsExtensionPoint" schema="schema/renameParticipants.exsd"/>
<extension-point id="moveParticipants" name="%moveParticipantsExtensionPoint" schema="schema/moveParticipants.exsd"/>
<extension-point id="createParticipants" name="%createParticipantsExtensionPoint" schema="schema/createParticipants.exsd"/>
<extension-point id="deleteParticipants" name="%deleteParticipantsExtensionPoint" schema="schema/deleteParticipants.exsd"/>
<extension-point id="copyParticipants" name="%copyParticipantsExtensionPoint" schema="schema/copyParticipants.exsd"/>
<extension-point id="refactoringContributions" name="%refactoringContributionsExtensionPoint" schema="schema/refactoringContributions.exsd"/>
<extension
point="org.eclipse.team.core.fileTypes">
<fileTypes
extension="history"
type="text"/>
<fileTypes
extension="index"
type="text"/>
</extension>
<extension
point="org.eclipse.core.contenttype.contentTypes">
<content-type
base-type="org.eclipse.core.runtime.text"
default-charset="UTF-8"
file-names="refactorings.index"
id="refactoringIndex"
name="%RefactoringHistoryContent.name"
priority="high"/>
<content-type
base-type="org.eclipse.core.runtime.text"
default-charset="UTF-8"
file-names="refactorings.history"
id="refactoringHistory"
name="%RefactoringIndexContent.name"
priority="high"/>
</extension>
<extension
point="org.eclipse.ltk.core.refactoring.refactoringContributions">
<contribution
class="org.eclipse.ltk.internal.core.refactoring.resource.RenameResourceRefactoringContribution"
id="org.eclipse.ltk.core.refactoring.rename.resource"/>
<contribution
class="org.eclipse.ltk.internal.core.refactoring.resource.MoveResourcesRefactoringContribution"
id="org.eclipse.ltk.core.refactoring.move.resources"/>
<contribution
class="org.eclipse.ltk.internal.core.refactoring.resource.DeleteResourcesRefactoringContribution"
id="org.eclipse.ltk.core.refactoring.delete.resources"/>
<contribution
class="org.eclipse.ltk.internal.core.refactoring.resource.MoveRenameResourceRefactoringContribution"
id="org.eclipse.ltk.core.refactoring.moverename.resource"/>
<contribution
class="org.eclipse.ltk.internal.core.refactoring.resource.CopyProjectRefactoringContribution"
id="org.eclipse.ltk.core.refactoring.copyproject.resource">
</contribution>
<contribution
class="org.eclipse.ltk.internal.core.refactoring.resource.CopyResourcesRefactoringContribution"
id="org.eclipse.ltk.core.refactoring.copy.resources"/>
</extension>
</plugin>