A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / ltk / ui / wizards / RenameLocalVariableWizard.java
index e3ee6da..a4f8941 100644 (file)
@@ -7,30 +7,31 @@ import net.sourceforge.phpdt.ltk.core.RenameIdentifierRefactoring;
 
 import org.eclipse.ltk.ui.refactoring.RefactoringWizard;
 
-
-
-/** <p>The wizard that is shown to the user for entering the necessary
-  * information for property renaming of local PHP variables.</p>
-  *
-  * <p>The wizard class is primarily needed for deciding which pages are
-  * shown to the user. The actual user interface creation goes on the
-  * pages.</p>
-  *
-  */
+/**
+ * <p>
+ * The wizard that is shown to the user for entering the necessary information
+ * for property renaming of local PHP variables.
+ * </p>
+ * 
+ * <p>
+ * The wizard class is primarily needed for deciding which pages are shown to
+ * the user. The actual user interface creation goes on the pages.
+ * </p>
+ * 
+ */
 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;
 
+       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));
+       }
 }