Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bundles/org.eclipse.e4.tools.emf.editor3x/plugin.xml2
-rw-r--r--bundles/org.eclipse.e4.tools.emf.editor3x/src/org/eclipse/e4/tools/emf/editor3x/RenameParticipant.java (renamed from bundles/org.eclipse.e4.tools.emf.editor3x/src/org/eclipse/e4/tools/emf/editor3x/ClassRenameParticipant.java)2
2 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.e4.tools.emf.editor3x/plugin.xml b/bundles/org.eclipse.e4.tools.emf.editor3x/plugin.xml
index 292826c0..86a929eb 100644
--- a/bundles/org.eclipse.e4.tools.emf.editor3x/plugin.xml
+++ b/bundles/org.eclipse.e4.tools.emf.editor3x/plugin.xml
@@ -35,7 +35,7 @@
<extension
point="org.eclipse.ltk.core.refactoring.renameParticipants">
<renameParticipant
- class="org.eclipse.e4.tools.emf.editor3x.ClassRenameParticipant"
+ class="org.eclipse.e4.tools.emf.editor3x.RenameParticipant"
id="org.eclipse.e4.tools.emf.editor3x.renameParticipant"
name="Workbench Model Contribution Participant">
<enablement>
diff --git a/bundles/org.eclipse.e4.tools.emf.editor3x/src/org/eclipse/e4/tools/emf/editor3x/ClassRenameParticipant.java b/bundles/org.eclipse.e4.tools.emf.editor3x/src/org/eclipse/e4/tools/emf/editor3x/RenameParticipant.java
index 1ea3f19c..5972877a 100644
--- a/bundles/org.eclipse.e4.tools.emf.editor3x/src/org/eclipse/e4/tools/emf/editor3x/ClassRenameParticipant.java
+++ b/bundles/org.eclipse.e4.tools.emf.editor3x/src/org/eclipse/e4/tools/emf/editor3x/RenameParticipant.java
@@ -22,7 +22,7 @@ import org.eclipse.ltk.core.refactoring.Change;
import org.eclipse.ltk.core.refactoring.RefactoringStatus;
import org.eclipse.ltk.core.refactoring.participants.CheckConditionsContext;
-public class ClassRenameParticipant extends
+public class RenameParticipant extends
org.eclipse.ltk.core.refactoring.participants.RenameParticipant {
private IType _type;
private IPackageFragment _pckage;

Back to the top