Uses of Interface
org.objectweb.asm.ClassVisitor

Packages that use ClassVisitor
org.objectweb.asm Provides a small and fast bytecode manipulation framework. 
org.objectweb.asm.commons Provides some useful class and method adapters. 
org.objectweb.asm.tree Provides an ASM visitor that constructs a tree representation of the classes it visits. 
org.objectweb.asm.util Provides ASM visitors that can be useful for programming and debugging purposes. 
org.objectweb.asm.xml Provides SAX 2.0 adapters for ASM visitors to convert classes to and from XML. 
 

Uses of ClassVisitor in org.objectweb.asm
 

Classes in org.objectweb.asm that implement ClassVisitor
 class ClassAdapter
          An empty ClassVisitor that delegates to another ClassVisitor.
 class ClassWriter
          A ClassVisitor that generates classes in bytecode form.
 

Fields in org.objectweb.asm declared as ClassVisitor
protected  ClassVisitor ClassAdapter.cv
          The ClassVisitor to which this adapter delegates calls.
 

Methods in org.objectweb.asm with parameters of type ClassVisitor
 void ClassReader.accept(ClassVisitor classVisitor, Attribute[] attrs, int flags)
          Makes the given visitor visit the Java class of this ClassReader.
 void ClassReader.accept(ClassVisitor classVisitor, int flags)
          Makes the given visitor visit the Java class of this ClassReader.
 

Constructors in org.objectweb.asm with parameters of type ClassVisitor
ClassAdapter(ClassVisitor cv)
          Constructs a new ClassAdapter object.
 

Uses of ClassVisitor in org.objectweb.asm.commons
 

Classes in org.objectweb.asm.commons that implement ClassVisitor
 class EmptyVisitor
          An empty implementation of the ASM visitor interfaces.
 class RemappingClassAdapter
          A ClassAdapter for type remapping.
 class SerialVersionUIDAdder
          A ClassAdapter that adds a serial version unique identifier to a class if missing.
 class StaticInitMerger
          A ClassAdapter that merges clinit methods into a single one.
 

Constructors in org.objectweb.asm.commons with parameters of type ClassVisitor
GeneratorAdapter(int access, Method method, String signature, Type[] exceptions, ClassVisitor cv)
          Creates a new GeneratorAdapter.
RemappingClassAdapter(ClassVisitor cv, Remapper remapper)
           
SerialVersionUIDAdder(ClassVisitor cv)
          Creates a new SerialVersionUIDAdder.
StaticInitMerger(String prefix, ClassVisitor cv)
           
 

Uses of ClassVisitor in org.objectweb.asm.tree
 

Classes in org.objectweb.asm.tree that implement ClassVisitor
 class ClassNode
          A node that represents a class.
 

Methods in org.objectweb.asm.tree with parameters of type ClassVisitor
 void FieldNode.accept(ClassVisitor cv)
          Makes the given class visitor visit this field.
 void InnerClassNode.accept(ClassVisitor cv)
          Makes the given class visitor visit this inner class.
 void ClassNode.accept(ClassVisitor cv)
          Makes the given class visitor visit this class.
 void MethodNode.accept(ClassVisitor cv)
          Makes the given class visitor visit this method.
 

Uses of ClassVisitor in org.objectweb.asm.util
 

Classes in org.objectweb.asm.util that implement ClassVisitor
 class ASMifierClassVisitor
          A ClassVisitor that prints the ASM code that generates the classes it visits.
 class CheckClassAdapter
          A ClassAdapter that checks that its methods are properly used.
 class TraceClassVisitor
          A ClassVisitor that prints a disassembled view of the classes it visits.
 

Fields in org.objectweb.asm.util declared as ClassVisitor
protected  ClassVisitor TraceClassVisitor.cv
          The ClassVisitor to which this visitor delegates calls.
 

Constructors in org.objectweb.asm.util with parameters of type ClassVisitor
CheckClassAdapter(ClassVisitor cv)
          Constructs a new CheckClassAdapter.
CheckClassAdapter(ClassVisitor cv, boolean checkDataFlow)
          Constructs a new CheckClassAdapter.
TraceClassVisitor(ClassVisitor cv, PrintWriter pw)
          Constructs a new TraceClassVisitor.
 

Uses of ClassVisitor in org.objectweb.asm.xml
 

Classes in org.objectweb.asm.xml that implement ClassVisitor
 class SAXClassAdapter
          A ClassVisitor that generates SAX 2.0 events from the visited class.