Package at.ssw.coco.ide.features.refactoring.ui.wizards

Examples of at.ssw.coco.ide.features.refactoring.ui.wizards.RenameRefactorWizard


  /**
   * opens the rename wizard
   */
  private void openWizard() {
    Refactoring ref = getRefactoring();   
    RenameRefactorWizard wizard = new RenameRefactorWizard( ref, info );
    RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation( wizard );
    try {
      op.run( shell, "Rename Refactoring Wizard");
    } catch( final InterruptedException irex ) {
      // operation canceled
View Full Code Here

TOP

Related Classes of at.ssw.coco.ide.features.refactoring.ui.wizards.RenameRefactorWizard

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.