X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ltk/core/RenameIdentifierRefactoring.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ltk/core/RenameIdentifierRefactoring.java new file mode 100644 index 0000000..54c2bad --- /dev/null +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ltk/core/RenameIdentifierRefactoring.java @@ -0,0 +1,32 @@ +// Copyright (c) 2005 by Leif Frenzel. All rights reserved. +// See http://leiffrenzel.de +// modified for phpeclipse.de project by axelcl +package net.sourceforge.phpdt.ltk.core; + +import org.eclipse.ltk.core.refactoring.participants.ProcessorBasedRefactoring; +import org.eclipse.ltk.core.refactoring.participants.RefactoringProcessor; + +/** + *

+ * Refactoring for renaming identifiers in PHP files. + *

+ * + *

+ * All the actual work is done in the processor, so we just have to keep a + * reference to one here. + *

+ * + */ +public class RenameIdentifierRefactoring extends ProcessorBasedRefactoring { + + private final RefactoringProcessor processor; + + public RenameIdentifierRefactoring(final RefactoringProcessor processor) { + super(processor); + this.processor = processor; + } + + public RefactoringProcessor getProcessor() { + return processor; + } +}