File: plugin.xml

package info (click to toggle)
eclipse-jdt-ui 4.29-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 93,280 kB
  • sloc: java: 831,977; xml: 14,578; jsp: 33; makefile: 5
file content (52 lines) | stat: -rw-r--r-- 2,626 bytes parent folder | download | duplicates (3)
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.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"/>
   </extension>        
</plugin>