Uses of Interface
org.objectweb.asm.CodeVisitor

Packages that use CodeVisitor
bsh   
org.objectweb.asm   
 

Uses of CodeVisitor in bsh
 

Methods in bsh with parameters of type CodeVisitor
static void ClassGeneratorUtil.generateParameterReifierCode(java.lang.String[] paramTypes, boolean isStatic, CodeVisitor cv)
          Generates the code to reify the arguments of the given method.
static void ClassGeneratorUtil.generateReturnCode(java.lang.String returnType, CodeVisitor cv)
          Generates the code to unreify the result of the given method.
 

Uses of CodeVisitor in org.objectweb.asm
 

Classes in org.objectweb.asm that implement CodeVisitor
 class CodeWriter
          A CodeVisitor that generates Java bytecode instructions.
 

Methods in org.objectweb.asm that return CodeVisitor
 CodeVisitor ClassVisitor.visitMethod(int access, java.lang.String name, java.lang.String desc, java.lang.String[] exceptions)
          Visits a method of the class.
 CodeVisitor ClassWriter.visitMethod(int access, java.lang.String name, java.lang.String desc, java.lang.String[] exceptions)