Package org.eclipse.jdt.internal.ui.refactoring.reorg

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


            }
          }
        }
        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

Related Classes of org.eclipse.jdt.internal.ui.refactoring.reorg.ReorgQueries

Copyright © 2018 www.massapicom. 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.