Package net.sf.rej.gui.action

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


        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
            .getClassFile(), fdr.getField());
        ga.add(rfa);
      } else {
        throw new AssertionError("Object of invalid type in list: " + obj.getClass());
      }
View Full Code Here

TOP

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

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.