Package net.sf.rej.gui.action

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


  }

  public void modifyMethod(ConstantPool cp, Method method, String name,
      Descriptor desc, AccessFlags flags, int maxStack, int maxLocals,
      List exceptions) {
    ModifyMethodAction mma = new ModifyMethodAction(cp, method, name, desc,
        flags, maxStack, maxLocals, exceptions);
    SystemFacade.getInstance().performAction(mma, this.openFile);
    this.dispatcher.notifyObservers(new Event(EventType.CLASS_UPDATE));
  }
View Full Code Here

TOP

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

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.