Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a35209c09a5f98caf69666010eee771a074addd5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension
         point="org.eclipse.ltk.core.refactoring.renameParticipants">
      <renameParticipant
            class="org.eclipse.papyrus.infra.ui.resources.refactoring.RenameModelParticipant"
            id="org.eclipse.papyrus.ui.resources.renameParticipant"
            name="%renameParticipant.name">
         <enablement>
            <with
                  variable="element">
               <instanceof
                     value="org.eclipse.core.resources.IFile">
               </instanceof>
            </with>
         </enablement>
      </renameParticipant>
   </extension>

</plugin>

Back to the top