Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Kiezun2002-09-25 08:41:26 +0000
committerAdam Kiezun2002-09-25 08:41:26 +0000
commitf79ff45cc9f549f8b5f74b0fa93aad725f554a71 (patch)
treebc3cfcc9c4d32391346518e8a48a72e0f0d3f43e /org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/tagging
parent11e71d16760ddf865e41bac6761eb1d10102f043 (diff)
downloadeclipse.jdt.ui-f79ff45cc9f549f8b5f74b0fa93aad725f554a71.tar.gz
eclipse.jdt.ui-f79ff45cc9f549f8b5f74b0fa93aad725f554a71.tar.xz
eclipse.jdt.ui-f79ff45cc9f549f8b5f74b0fa93aad725f554a71.zip
removing bogus interface
Diffstat (limited to 'org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/tagging')
-rw-r--r--org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/tagging/IMultiRenameRefactoring.java36
1 files changed, 0 insertions, 36 deletions
diff --git a/org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/tagging/IMultiRenameRefactoring.java b/org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/tagging/IMultiRenameRefactoring.java
deleted file mode 100644
index edc0b7f41f..0000000000
--- a/org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/tagging/IMultiRenameRefactoring.java
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * (c) Copyright IBM Corp. 2000, 2001.
- * All Rights Reserved.
- */
-package org.eclipse.jdt.internal.corext.refactoring.tagging;
-
-import java.util.Map;
-
-import org.eclipse.jdt.core.JavaModelException;
-
-import org.eclipse.jdt.internal.corext.refactoring.base.IRefactoring;
-import org.eclipse.jdt.internal.corext.refactoring.base.RefactoringStatus;
-
-public interface IMultiRenameRefactoring extends IRefactoring{
-
- /**
- * Sets new names.
- * The names are then validated in <code>checkNewNames</code>.
- * @param renamings Map: String -> String (old name -> new name)
- */
- public void setNewNames(Map renamings);
-
- /**
- * Get the old names.
- * @return Map: String -> String (old name -> new name)
- */
- public Map getNewNames() throws JavaModelException;
-
- /**
- * Checks if the new name (set in <code>setNewName</code>) is valid for
- * the entity that this refactoring renames.
- */
- public RefactoringStatus checkNewNames() throws JavaModelException;
-
-}
-

Back to the top