Package net.sf.rej.gui.action

Examples of net.sf.rej.gui.action.RenameFieldAction.execute()


    String className = ic.getCf().getFullClassName();
    String newFieldName = this.advisor.newFieldNameFor(className, field.getName(), field.getDescriptor());
    if (newFieldName != null) {
      Undoable u = new RenameFieldAction(ic.getCf().getPool(), field, newFieldName);
      if (this.batchMode) {
        u.execute();
      } else {
        SystemFacade.getInstance().performAction(u, ic.getFilename());         
      }
    }
  }
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.