Uses of Class
org.eclipse.sisu.space.asm.ClassVisitor
Packages that use ClassVisitor
Package
Description
Customizable scanning of bean implementations.
-
Uses of ClassVisitor in org.eclipse.sisu.space
Methods in org.eclipse.sisu.space that return ClassVisitorModifier and TypeMethodDescriptionprivate static ClassVisitorSpaceScanner.adapt(ClassVisitor _cv) Adapts the givenClassVisitorto its equivalent ASM form. -
Uses of ClassVisitor in org.eclipse.sisu.space.asm
Subclasses of ClassVisitor in org.eclipse.sisu.space.asmModifier and TypeClassDescriptionclassAClassVisitorthat generates a corresponding ClassFile structure, as defined in the Java Virtual Machine Specification (JVMS).Fields in org.eclipse.sisu.space.asm declared as ClassVisitorModifier and TypeFieldDescriptionprotected ClassVisitorClassVisitor.cvThe class visitor to which this visitor must delegate method calls.Methods in org.eclipse.sisu.space.asm that return ClassVisitorModifier and TypeMethodDescriptionClassVisitor.getDelegate()The class visitor to which this visitor must delegate method calls.Methods in org.eclipse.sisu.space.asm with parameters of type ClassVisitorModifier and TypeMethodDescriptionvoidClassReader.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.private intClassReader.readField(ClassVisitor classVisitor, Context context, int fieldInfoOffset) Reads a JVMS field_info structure and makes the given visitor visit it.private intClassReader.readMethod(ClassVisitor classVisitor, Context context, int methodInfoOffset) Reads a JVMS method_info structure and makes the given visitor visit it.private voidClassReader.readModuleAttributes(ClassVisitor classVisitor, Context context, int moduleOffset, int modulePackagesOffset, String moduleMainClass) Reads the Module, ModulePackages and ModuleMainClass attributes and visit them.private intClassReader.readRecordComponent(ClassVisitor classVisitor, Context context, int recordComponentOffset) Reads a record component and visit it.Constructors in org.eclipse.sisu.space.asm with parameters of type ClassVisitorModifierConstructorDescriptionprotectedClassVisitor(int api, ClassVisitor classVisitor) Constructs a newClassVisitor.