Package cn.wensiqun.asmsupport.creator

Examples of cn.wensiqun.asmsupport.creator.IMethodCreator


   
    return new InvocationRenameMethodAdapter(methodVisitor);
  }

  private boolean isModified(String name, String desc) {
    IMethodCreator imm = null;
    for (IMethodCreator m : needModify) {
      if (methodEqual(m, name, desc)) {
        imm = m;
        break;
      }
View Full Code Here

TOP

Related Classes of cn.wensiqun.asmsupport.creator.IMethodCreator

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.