Uses of Class
org.objectweb.asm.ClassVisitor
-
Packages that use ClassVisitor Package Description org.objectweb.asm Provides a small and fast bytecode manipulation framework. -
-
Uses of ClassVisitor in org.objectweb.asm
Subclasses of ClassVisitor in org.objectweb.asm Modifier and Type Class Description class
ClassWriter
AClassVisitor
that generates a corresponding ClassFile structure, as defined in the Java Virtual Machine Specification (JVMS).Fields in org.objectweb.asm declared as ClassVisitor Modifier and Type Field Description protected ClassVisitor
ClassVisitor. cv
The class visitor to which this visitor must delegate method calls.Methods in org.objectweb.asm with parameters of type ClassVisitor Modifier and Type Method Description void
ClassReader. accept(ClassVisitor classVisitor, int parsingOptions)
Makes the given visitor visit the JVMS ClassFile structure passed to the constructor of thisClassReader
.void
ClassReader. accept(ClassVisitor classVisitor, Attribute[] attributePrototypes, int parsingOptions)
Makes the given visitor visit the JVMS ClassFile structure passed to the constructor of thisClassReader
.Constructors in org.objectweb.asm with parameters of type ClassVisitor Constructor Description ClassVisitor(int api, ClassVisitor classVisitor)
Constructs a newClassVisitor
.
-