HomeSort by relevance Sort by last modified time
    Searched refs:wizard (Results 1 - 25 of 49) sorted by null

1 2

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
IUpdateWizardDialog.java 19 import org.eclipse.jface.wizard.WizardDialog;
WizardDialogEx.java 20 import org.eclipse.jface.wizard.IWizard;
21 import org.eclipse.jface.wizard.WizardDialog;
ReferenceChooserDialog.java 289 RefactoringWizard wizard = new ExtractStringWizard(ref, mProject); local
290 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
293 if (op.run(w.getDisplay().getActiveShell(), wizard.getDefaultPageTitle()) ==
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutAction.java 34 RefactoringWizard wizard = new ChangeLayoutWizard(ref, mEditor); local
35 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
37 op.run(mWindow.getShell(), wizard.getDefaultPageTitle());
ChangeViewAction.java 34 RefactoringWizard wizard = new ChangeViewWizard(ref, mEditor); local
35 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
37 op.run(mWindow.getShell(), wizard.getDefaultPageTitle());
ExtractIncludeAction.java 34 RefactoringWizard wizard = new ExtractIncludeWizard(ref, mEditor); local
35 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
37 op.run(mWindow.getShell(), wizard.getDefaultPageTitle());
ExtractStyleAction.java 34 RefactoringWizard wizard = new ExtractStyleWizard(ref, mEditor); local
35 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
37 op.run(mWindow.getShell(), wizard.getDefaultPageTitle());
UnwrapAction.java 34 RefactoringWizard wizard = new UnwrapWizard(ref, mEditor); local
35 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
37 op.run(mWindow.getShell(), wizard.getDefaultPageTitle());
WrapInAction.java 34 RefactoringWizard wizard = new WrapInWizard(ref, mEditor); local
35 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
37 op.run(mWindow.getShell(), wizard.getDefaultPageTitle());
RefactoringAssistant.java 233 RefactoringWizard wizard = null; local
235 wizard = ((VisualRefactoring) mRefactoring).createWizard();
237 wizard = new ExtractStringWizard((ExtractStringRefactoring) mRefactoring,
243 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
246 op.run(window.getShell(), wizard.getDefaultPageTitle());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt.ndk/src/com/android/ide/eclipse/adt/ndk/internal/actions/
AddNativeAction.java 26 import org.eclipse.jface.wizard.WizardDialog;
50 AddNativeWizard wizard = new AddNativeWizard(project, mPart.getSite() local
52 WizardDialog dialog = new WizardDialog(mPart.getSite().getShell(), wizard);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/actions/
ExportWizardAction.java 30 import org.eclipse.jface.wizard.WizardDialog;
76 // call the export wizard on the current selection.
77 ExportWizard wizard = new ExportWizard(); local
78 wizard.init(mWorkbench, selection);
80 mWorkbench.getDisplay().getActiveShell(), wizard);
  /external/antlr/src/org/antlr/runtime/tree/
TreePatternParser.java 36 protected TreeWizard wizard; field in class:TreePatternParser
39 public TreePatternParser(TreePatternLexer tokenizer, TreeWizard wizard, TreeAdaptor adaptor) {
41 this.wizard = wizard;
140 int treeNodeType = wizard.getTokenType(tokenName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringAction.java 120 * Create a new instance of our refactoring and a wizard to configure it.
125 RefactoringWizard wizard = new ExtractStringWizard(ref, mFile.getProject()); local
126 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
128 op.run(mWindow.getShell(), wizard.getDefaultPageTitle());
ExtractStringProposal.java 64 RefactoringWizard wizard = new ExtractStringWizard(refactoring, file.getProject()); local
65 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
68 op.run(window.getShell(), wizard.getDefaultPageTitle());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
OverviewExportPart.java 29 import org.eclipse.jface.wizard.WizardDialog;
73 buf.append("<form><li><a href=\"wizard\">"); //$NON-NLS-1$
74 buf.append("Use the Export Wizard");
94 // call the export wizard
97 ExportWizard wizard = new ExportWizard();
98 wizard.init(PlatformUI.getWorkbench(), selection);
99 WizardDialog dialog = new WizardDialog(body.getShell(), wizard);
  /external/chromium/chrome/browser/chromeos/login/
wizard_controller_browsertest.cc 39 static MockOutShowHide<T>* Create(WizardController* wizard);
43 CreateMockWizardScreenHelper<T>::Create(WizardController* wizard) {
44 return new MockOutShowHide<T>(wizard);
49 WizardController* wizard) {
50 return new MockOutShowHide<chromeos::NetworkScreen>(wizard);
74 WizardController* const wizard = controller(); local
75 ASSERT_TRUE(wizard != NULL);
76 wizard->ShowFirstScreen(WizardController::kNetworkScreenName);
77 views::View* current_screen = wizard->contents();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/
AdtStartup.java 30 import org.eclipse.jface.wizard.WizardDialog;
46 * <li> See if the user has ever run the welcome wizard, and if not, run it
61 // Usage statistics are sent after the wizard has run asynchronously (provided the
78 // the welcome wizard each time if we can simply use the existing SDK install.
96 // pester the user with the welcome wizard. (This also implies that the user
103 // Check whether we've run this wizard before.
113 WelcomeWizard wizard = new WelcomeWizard(mStore);
114 WizardDialog dialog = new WizardDialog(window.getShell(), wizard);
118 // Record the fact that we've run the wizard so we don't attempt to do it again,
119 // even if the user just cancels out of the wizard
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectWizard.java 24 import org.eclipse.jface.wizard.IWizardPage;
25 import org.eclipse.jface.wizard.Wizard;
31 * A "New Android Project" Wizard.
39 public class NewProjectWizard extends Wizard implements INewWizard {
49 /** Constructs a new wizard default project wizard */
76 // Sample projects can be created when entering the new/existing wizard, or
77 // the sample wizard
121 // Done with wizard when creating from existing or creating test project
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PlayAnimationMenu.java 39 import org.eclipse.jface.wizard.WizardDialog;
217 * Action which brings up the "Create new XML File" wizard, pre-selected with the
228 NewXmlFileWizard wizard = new NewXmlFileWizard(); local
235 wizard.init(workbench, selection);
236 WizardDialog dialog = new WizardDialog(parent, wizard);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/
RenamePackageAction.java 111 * Validate the new package name and start the refactoring wizard
160 ApplicationPackageNameRefactoringWizard wizard = local
162 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
KeySelectionPage.java 23 import org.eclipse.jface.wizard.IWizardPage;
61 protected KeySelectionPage(ExportWizard wizard, String pageName) {
63 mWizard = wizard;
188 // the wizard as well
KeystoreSelectionPage.java 23 import org.eclipse.jface.wizard.IWizardPage;
54 protected KeystoreSelectionPage(ExportWizard wizard, String pageName) {
56 mWizard = wizard;
KeyCreationPage.java 23 import org.eclipse.jface.wizard.IWizardPage;
58 protected KeyCreationPage(ExportWizard wizard, String pageName) {
60 mWizard = wizard;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintFix.java 402 RefactoringWizard wizard = refactoring.createWizard(); local
404 new RefactoringWizardOpenOperation(wizard);
408 op.run(window.getShell(), wizard.getDefaultPageTitle());
458 RefactoringWizard wizard = new ExtractStringWizard(refactoring, local
460 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
464 op.run(window.getShell(), wizard.getDefaultPageTitle());

Completed in 887 milliseconds

1 2