Package net.sf.rej.gui.action

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


        RemoveInstructionAction ria = new RemoveInstructionAction(cr
            .getParentCode(), cr.getInstruction());
        ga.add(ria);
      } else if (obj instanceof MethodDefRow) {
        MethodDefRow mdr = (MethodDefRow) obj;
        RemoveMethodAction rma = new RemoveMethodAction(mdr
            .getClassFile(), mdr.getMethod());
        ga.add(rma);
      } else if (obj instanceof FieldDefRow) {
        FieldDefRow fdr = (FieldDefRow) obj;
        RemoveFieldAction rfa = new RemoveFieldAction(fdr
View Full Code Here

TOP

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

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.