Package net.sf.rej.gui.editor.iteration

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


        .getProgressMonitor());
        ProjectIterator.iterate(this.openProject, iterator);
  }

  public void refactorMethodName(String className, Descriptor desc, String oldMethodName, String newMethodName) {
    RefactoringAdvisor advisor = new RefactorMethodNameAdvisor(className, desc, oldMethodName, newMethodName);
    AbstractIteratorAgent iterator = new RefactoringIterator(advisor, false);
    iterator.setProgressMonitor(SystemFacade.getInstance()
        .getProgressMonitor());
        ProjectIterator.iterate(this.openProject, iterator);
  }
View Full Code Here

TOP

Related Classes of net.sf.rej.gui.editor.iteration.RefactorMethodNameAdvisor

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.