Examples of ReorgQueries


Examples of org.eclipse.dltk.internal.ui.refactoring.reorg.ReorgQueries

  public DeleteWizard(Refactoring refactoring) {
    super(refactoring, DIALOG_BASED_USER_INTERFACE | YES_NO_BUTTON_STYLE
        | NO_PREVIEW_PAGE | NO_BACK_BUTTON_ON_STATUS_DIALOG);
    setDefaultPageTitle(RefactoringMessages.DeleteWizard_1);
    ((ScriptDeleteProcessor) ((DeleteRefactoring) getRefactoring())
        .getProcessor()).setQueries(new ReorgQueries(this));
  }
View Full Code Here

Examples of org.eclipse.jdt.internal.ui.refactoring.reorg.ReorgQueries

      throw new RefactorException(status);
    }

    Shell shell = EclimPlugin.getShell();
    processor.setCreateTargetQueries(new CreateTargetQueries(shell));
    processor.setReorgQueries(new ReorgQueries(shell));

    Refactoring refactoring = new MoveRefactoring(processor);

    // create a more descriptive name than the default.
    String desc = refactoring.getName() +
View Full Code Here

Examples of org.eclipse.jdt.internal.ui.refactoring.reorg.ReorgQueries

            }
          }
        }
        if (wizard != null) {
          processor.setCreateTargetQueries(new CreateTargetQueries(wizard));
          processor.setReorgQueries(new ReorgQueries(wizard));
          new RefactoringStarter().activate(refactoring, wizard, shell,
              RefactoringMessages.OpenRefactoringWizardAction_refactoring,
              RefactoringSaveHelper.SAVE_ALL_ALWAYS_ASK);
        }
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.