FileDocCategorySizeDatePackage
ExtractStringWizard.javaAPI DocAndroid 1.5 API1780Wed May 06 22:41:10 BST 2009com.android.ide.eclipse.adt.refactorings.extractstring

ExtractStringWizard

public class ExtractStringWizard extends org.eclipse.ltk.ui.refactoring.RefactoringWizard
A wizard for ExtractString based on a simple dialog with one page.
see
ExtractStringInputPage
see
ExtractStringRefactoring

Fields Summary
private final org.eclipse.core.resources.IProject
mProject
Constructors Summary
public ExtractStringWizard(ExtractStringRefactoring ref, org.eclipse.core.resources.IProject project)
Create a wizard for ExtractString based on a simple dialog with one page.

param
ref The instance of {@link ExtractStringRefactoring} to associate to the wizard.
param
project The project where the wizard was invoked from (e.g. where the user selection happened, so that we can retrieve project resources.)

        super(ref, DIALOG_BASED_USER_INTERFACE | PREVIEW_EXPAND_FIRST_NODE);
        mProject = project;
        setDefaultPageTitle(ref.getName());
    
Methods Summary
protected voidaddUserInputPages()

        addPage(new ExtractStringInputPage(mProject));