Package cn.wensiqun.info

Examples of cn.wensiqun.info.MethodInfo


    return new FieldDefVisitor(grepClient, fieldInfo);
  }

 
  public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {
    MethodInfo methodInfo = new MethodInfo(info, name, desc);
    info.getMethods().add(methodInfo);
    return new MethodDefVisitor(grepClient, methodInfo);
  }
View Full Code Here

TOP

Related Classes of cn.wensiqun.info.MethodInfo

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.