Package net.sf.cglib.asm

Examples of net.sf.cglib.asm.ClassVisitor


/* 24 */     this.chain = ((ClassTransformer[])chain.clone());
/*    */   }
/*    */
/*    */   public void setTarget(ClassVisitor v) {
/* 28 */     super.setTarget(this.chain[0]);
/* 29 */     ClassVisitor next = v;
/* 30 */     for (int i = this.chain.length - 1; i >= 0; i--) {
/* 31 */       this.chain[i].setTarget(next);
/* 32 */       next = this.chain[i];
/*    */     }
/*    */   }
View Full Code Here

TOP

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

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.