/** * Copyright (c) 2005-2013 by Appcelerator, Inc. All Rights Reserved. * Licensed under the terms of the Eclipse Public License (EPL). * Please see the license.txt included with this distribution for details. * Any modifications to this file must keep this entire header intact. */ /* * Created on Apr 9, 2006 */ package com.python.pydev.refactoring.wizards; import java.io.File; import java.util.HashSet; import java.util.Map; import org.eclipse.ltk.core.refactoring.RefactoringStatus; import org.python.pydev.editor.refactoring.RefactoringRequest; import org.python.pydev.parser.visitors.scope.ASTEntry; import org.python.pydev.shared_core.structure.Tuple; public interface IRefactorRenameProcess { /** * In this method, implementors should find the references in the workspace (or local scope -- as * determined by the request) that should be renamed */ public abstract void findReferencesToRename(RefactoringRequest request, RefactoringStatus status); /** * @return a list of entries with the occurrences that will be affected in the refactoring or null if it * does not have this kind of association. */ public HashSet<ASTEntry> getOccurrences(); /** * @return a map with the files that will be affected in the refactoring pointing * to the entries that will be changed in this process. * * The tuple that is the key of the map has the file and the module name that the file represents. */ public Map<Tuple<String, File>, HashSet<ASTEntry>> getOccurrencesInOtherFiles(); public abstract void clear(); }