Package net.sf.cglib.asm

Examples of net.sf.cglib.asm.ClassAdapter


/*    */
/*    */   public static String[] getClassInfo(ClassReader r)
/*    */   {
/* 37 */     List array = new ArrayList();
/*    */     try {
/* 39 */       r.accept(new ClassAdapter(null, array)
/*    */       {
/*    */         public void visit(int version, int access, String name, String superName, String[] interfaces, String sourceFile)
/*    */         {
/* 46 */           this.val$array.add(name.replace('/', '.'));
/* 47 */           if (superName != null) {
View Full Code Here

TOP

Related Classes of net.sf.cglib.asm.ClassAdapter

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.