* the input page for the Rename Property refactoring, where users can control
* the effects of the refactoring; to be shown in the wizard.
* </p>
- *
+ *
* <p>
* We let the user enter the new name for the property, and we let her decide
* whether other property files in the bundle should be affected, and whether
* the operation is supposed to span the entire workspace or only the current
* project.
* </p>
- *
+ *
*/
public class RenameLocalVariablePage extends UserInputWizardPage {
- private static final String DS_KEY = RenameLocalVariablePage.class.getName();
+ private static final String DS_KEY = RenameLocalVariablePage.class
+ .getName();
private static final String DS_RENAME_DQ_STRINGS = "RENAME_DQ_STRINGS"; //$NON-NLS-1$
private void validate() {
String txt = txtNewName.getText();
- Scanner s;
+ //Scanner s;
setPageComplete(isVariable(txt) && !txt.equals(info.getOldName()));
}