Package net.sf.rej.gui.action

Examples of net.sf.rej.gui.action.RenameMethodAction


    // method should be refactored?
    String className = ic.getCf().getFullClassName();
    String newMethodName = this.advisor.newMethodNameFor(className, method.getName(), method.getDescriptor());
    if (newMethodName != null) {
      Undoable u = new RenameMethodAction(ic.getCf().getPool(), method, newMethodName);
      if (this.batchMode) {
        u.execute();
      } else {
        SystemFacade.getInstance().performAction(u, ic.getFilename());         
      }
    }
  }
View Full Code Here

TOP

Related Classes of net.sf.rej.gui.action.RenameMethodAction

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.