Examples of RefactorClassNameAdvisor


Examples of net.sf.rej.gui.editor.iteration.RefactorClassNameAdvisor

    MainWindow.getInstance().setTab(Tab.SEARCH);
    SystemFacade.getInstance().search(iterator);
  }

  public void refactorClassName(String oldClassName, String newClassName) {
    RefactoringAdvisor advisor = new RefactorClassNameAdvisor(oldClassName, newClassName);
    AbstractIteratorAgent iterator = new RefactoringIterator(advisor, false);
    iterator.setProgressMonitor(SystemFacade.getInstance()
        .getProgressMonitor());
        ProjectIterator.iterate(this.openProject, iterator);
  }
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.