X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ltk/ui/wizards/RenameLocalVariableWizard.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ltk/ui/wizards/RenameLocalVariableWizard.java index 6174f21..a4f8941 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ltk/ui/wizards/RenameLocalVariableWizard.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ltk/ui/wizards/RenameLocalVariableWizard.java @@ -7,33 +7,31 @@ import net.sourceforge.phpdt.ltk.core.RenameIdentifierRefactoring; import org.eclipse.ltk.ui.refactoring.RefactoringWizard; - - -/**

The wizard that is shown to the user for entering the necessary - * information for property renaming.

- * - *

The wizard class is primarily needed for deciding which pages are - * shown to the user. The actual user interface creation goes on the - * pages.

- * - */ +/** + *

+ * The wizard that is shown to the user for entering the necessary information + * for property renaming of local PHP variables. + *

+ * + *

+ * The wizard class is primarily needed for deciding which pages are shown to + * the user. The actual user interface creation goes on the pages. + *

+ * + */ public class RenameLocalVariableWizard extends RefactoringWizard { - private final RenameIdentifierInfo info; - - - public RenameLocalVariableWizard( final RenameIdentifierRefactoring refactoring, - final RenameIdentifierInfo info ) { - super( refactoring, DIALOG_BASED_USER_INTERFACE ); - this.info = info; - } - + private final RenameIdentifierInfo info; - // interface methods of RefactoringWizard - ///////////////////////////////////////// + public RenameLocalVariableWizard( + final RenameIdentifierRefactoring refactoring, + final RenameIdentifierInfo info) { + super(refactoring, DIALOG_BASED_USER_INTERFACE); + this.info = info; + } - protected void addUserInputPages() { - setDefaultPageTitle( getRefactoring().getName() ); - addPage( new RenameLocalVariablePage( info ) ); - } + protected void addUserInputPages() { + setDefaultPageTitle(getRefactoring().getName()); + addPage(new RenameLocalVariablePage(info)); + } }