1) Moved net.sourceforge.phpeclipse.ui\src\net\sourceforge\phpdt back to net.sourcefo...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / ltk / ui / wizards / RenameIdentifierWizard.java
index d3570f0..21e80e7 100644 (file)
@@ -7,33 +7,35 @@ 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.</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.
+ * </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 RenameIdentifierWizard extends RefactoringWizard {
 
-  private final RenameIdentifierInfo info;
-
-
-  public RenameIdentifierWizard( final RenameIdentifierRefactoring refactoring,
-                               final RenameIdentifierInfo info ) {
-    super( refactoring, DIALOG_BASED_USER_INTERFACE );
-    this.info = info;
-  }
+       private final RenameIdentifierInfo info;
 
+       public RenameIdentifierWizard(
+                       final RenameIdentifierRefactoring refactoring,
+                       final RenameIdentifierInfo info) {
+               super(refactoring, DIALOG_BASED_USER_INTERFACE);
+               this.info = info;
+       }
 
-  // interface methods of RefactoringWizard
-  /////////////////////////////////////////
+       // interface methods of RefactoringWizard
+       // ///////////////////////////////////////
 
-  protected void addUserInputPages() {
-    setDefaultPageTitle( getRefactoring().getName() );
-    addPage( new RenameLocalVariablePage( info ) );
-  }
+       protected void addUserInputPages() {
+               //incastrix
+               //setDefaultPageTitle(getRefactoring().getName());
+               addPage(new RenameLocalVariablePage(info));
+       }
 }