Uses of Class
org.springframework.asm.ClassVisitor
Packages that use ClassVisitor Package Description org.springframework.asm Spring's repackaging of ASM 7.0 (with Spring-specific patches; for internal use only).org.springframework.cglib.core Spring's repackaging of the CGLIB core package (for internal use only).org.springframework.cglib.proxy Spring's repackaging of the CGLIB proxy package (for internal use only).org.springframework.core.type.classreading Support classes for reading annotation and class-level metadata.Uses of ClassVisitor in org.springframework.asm
Subclasses of ClassVisitor in org.springframework.asm Modifier and Type Class Description classClassWriterAClassVisitorthat generates a corresponding ClassFile structure, as defined in the Java Virtual Machine Specification (JVMS).Fields in org.springframework.asm declared as ClassVisitor Modifier and Type Field Description protected ClassVisitorClassVisitor. cvThe class visitor to which this visitor must delegate method calls.Methods in org.springframework.asm with parameters of type ClassVisitor Modifier and Type Method Description voidClassReader. accept(ClassVisitor classVisitor, int parsingOptions)Makes the given visitor visit the JVMS ClassFile structure passed to the constructor of thisClassReader.voidClassReader. 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.springframework.asm with parameters of type ClassVisitor Constructor Description ClassVisitor(int api, ClassVisitor classVisitor)Constructs a newClassVisitor.Uses of ClassVisitor in org.springframework.cglib.core
Methods in org.springframework.cglib.core with parameters of type ClassVisitor Modifier and Type Method Description voidKeyFactory.Generator. generateClass(ClassVisitor v)Uses of ClassVisitor in org.springframework.cglib.proxy
Methods in org.springframework.cglib.proxy with parameters of type ClassVisitor Modifier and Type Method Description voidEnhancer. generateClass(ClassVisitor v)Uses of ClassVisitor in org.springframework.core.type.classreading
Subclasses of ClassVisitor in org.springframework.core.type.classreading Modifier and Type Class Description classAnnotationMetadataReadingVisitorDeprecated.As of Spring Framework 5.2, this class has been replaced bySimpleAnnotationMetadataReadingVisitorfor internal use within the framework, but there is no public replacement forAnnotationMetadataReadingVisitor.