Skip to main content
summaryrefslogtreecommitdiffstats
blob: d141b3132c9e9fe95d3342866839876149de867e (plain) (blame)
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension
         point="org.eclipse.ui.editors">
      <editor
            class="org.eclipse.e4.tools.emf.editor3x.E4WorkbenchModelEditor"
            default="true"
            extensions="e4xmi"
            icon="icons/full/obj16/application_view_tile.png"
            id="org.eclipse.e4.tools.emf.editor3x.e4wbm"
            name="%editor.name">
      </editor>
   </extension>
   <extension
         point="org.eclipse.e4.tools.emf.ui.editors">
      <contributionClassCreator
            class="org.eclipse.e4.tools.emf.editor3x.extension.HandlerContributionEditor">
      </contributionClassCreator>
      <contributionClassCreator
            class="org.eclipse.e4.tools.emf.editor3x.extension.PartContributionEditor">
      </contributionClassCreator>
      <contributionClassCreator
            class="org.eclipse.e4.tools.emf.editor3x.extension.AddonContributionEditor">
      </contributionClassCreator>
   </extension>
   <extension
         point="org.eclipse.ui.preferencePages">
      <page
            class="org.eclipse.e4.tools.emf.editor3x.ModelEditorPreferencePage"
            id="org.eclipse.e4.tools.emf.editor3x.modeleditor"
            name="%page.name">
      </page>
   </extension>
   <extension
         point="org.eclipse.ltk.core.refactoring.renameParticipants">
      <renameParticipant
            class="org.eclipse.e4.tools.emf.editor3x.ModelRenameParticipant"
            id="org.eclipse.e4.tools.emf.editor3x.renameParticipant"
            name="Workbench Model Contribution Participant">
         <enablement>
	  	  <with variable="affectedNatures">
	  	    <iterate operator="or">
	  	      <equals value="org.eclipse.pde.PluginNature"/>
	  	    </iterate>
	  	  </with>
	  	  <with variable="element">
           <or>
            <instanceof
                  value="org.eclipse.jdt.core.IType">
            </instanceof>
            <instanceof
                  value="org.eclipse.jdt.core.IPackageFragment">
            </instanceof>
            <instanceof
                  value="org.eclipse.core.resources.IFile">
            </instanceof>
            <instanceof
                  value="org.eclipse.core.resources.IFolder">
            </instanceof>
         </or>
	  	  </with>
	  	</enablement>
      </renameParticipant>
   </extension>
   <extension
         point="org.eclipse.ltk.core.refactoring.moveParticipants">
      <moveParticipant
            class="org.eclipse.e4.tools.emf.editor3x.ModelMoveParticipant"
            id="org.eclipse.e4.tools.emf.editor3x.moveParticipant"
            name="Workbench Model Contribution Participant">
         <enablement>
	  	  <with variable="affectedNatures">
	  	    <iterate operator="or">
	  	      <equals value="org.eclipse.pde.PluginNature"/>
	  	    </iterate>
	  	  </with>
	  	  <with variable="element">
         <or>
            <instanceof
                  value="org.eclipse.jdt.core.IType">
            </instanceof>
            <instanceof
                  value="org.eclipse.jdt.core.IPackageFragment">
            </instanceof>
            <instanceof
                  value="org.eclipse.core.resources.IFile">
            </instanceof>
            <instanceof
                  value="org.eclipse.core.resources.IFolder">
            </instanceof>
         </or>
	  	  </with>
	  	</enablement>
      </moveParticipant>
   </extension>

</plugin>

Back to the top