From f79ff45cc9f549f8b5f74b0fa93aad725f554a71 Mon Sep 17 00:00:00 2001 From: Adam Kiezun Date: Wed, 25 Sep 2002 08:41:26 +0000 Subject: removing bogus interface --- .../tagging/IMultiRenameRefactoring.java | 36 ---------------------- 1 file changed, 36 deletions(-) delete mode 100644 org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/tagging/IMultiRenameRefactoring.java (limited to 'org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/tagging') 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 checkNewNames. - * @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 setNewName) is valid for - * the entity that this refactoring renames. - */ - public RefactoringStatus checkNewNames() throws JavaModelException; - -} - -- cgit v1.2.3