Uses of Class
org.objectweb.asm.AnnotationVisitor
-
Packages that use AnnotationVisitor Package Description 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 AnnotationVisitor in org.objectweb.asm
Fields in org.objectweb.asm declared as AnnotationVisitor Modifier and Type Field Description protected AnnotationVisitorAnnotationVisitor. avThe annotation visitor to which this visitor must delegate method calls.Methods in org.objectweb.asm that return AnnotationVisitor Modifier and Type Method Description AnnotationVisitorAnnotationVisitor. visitAnnotation(java.lang.String name, java.lang.String desc)Visits a nested annotation value of the annotation.AnnotationVisitorClassVisitor. visitAnnotation(java.lang.String desc, boolean visible)Visits an annotation of the class.AnnotationVisitorClassWriter. visitAnnotation(java.lang.String desc, boolean visible)AnnotationVisitorFieldVisitor. visitAnnotation(java.lang.String desc, boolean visible)Visits an annotation of the field.AnnotationVisitorMethodVisitor. visitAnnotation(java.lang.String desc, boolean visible)Visits an annotation of this method.AnnotationVisitorMethodVisitor. visitAnnotationDefault()Visits the default value of this annotation interface method.AnnotationVisitorAnnotationVisitor. visitArray(java.lang.String name)Visits an array value of the annotation.AnnotationVisitorMethodVisitor. visitInsnAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)Visits an annotation on an instruction.AnnotationVisitorMethodVisitor. visitLocalVariableAnnotation(int typeRef, TypePath typePath, Label[] start, Label[] end, int[] index, java.lang.String desc, boolean visible)Visits an annotation on a local variable type.AnnotationVisitorMethodVisitor. visitParameterAnnotation(int parameter, java.lang.String desc, boolean visible)Visits an annotation of a parameter this method.AnnotationVisitorMethodVisitor. visitTryCatchAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)Visits an annotation on an exception handler type.AnnotationVisitorClassVisitor. visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)Visits an annotation on a type in the class signature.AnnotationVisitorClassWriter. visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorFieldVisitor. visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)Visits an annotation on the type of the field.AnnotationVisitorMethodVisitor. visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)Visits an annotation on a type in the method signature.Constructors in org.objectweb.asm with parameters of type AnnotationVisitor Constructor Description AnnotationVisitor(int api, AnnotationVisitor av)Constructs a newAnnotationVisitor. -
Uses of AnnotationVisitor in org.objectweb.asm.commons
Subclasses of AnnotationVisitor in org.objectweb.asm.commons Modifier and Type Class Description classAnnotationRemapperAnAnnotationVisitoradapter for type remapping.classRemappingAnnotationAdapterDeprecated.useAnnotationRemapperinstead.Methods in org.objectweb.asm.commons that return AnnotationVisitor Modifier and Type Method Description protected AnnotationVisitorClassRemapper. createAnnotationRemapper(AnnotationVisitor av)protected AnnotationVisitorRemappingClassAdapter. createRemappingAnnotationAdapter(AnnotationVisitor av)Deprecated.AnnotationVisitorAnnotationRemapper. visitAnnotation(java.lang.String name, java.lang.String desc)AnnotationVisitorClassRemapper. visitAnnotation(java.lang.String desc, boolean visible)AnnotationVisitorFieldRemapper. visitAnnotation(java.lang.String desc, boolean visible)AnnotationVisitorMethodRemapper. visitAnnotation(java.lang.String desc, boolean visible)AnnotationVisitorRemappingAnnotationAdapter. visitAnnotation(java.lang.String name, java.lang.String desc)Deprecated.AnnotationVisitorRemappingClassAdapter. visitAnnotation(java.lang.String desc, boolean visible)Deprecated.AnnotationVisitorRemappingFieldAdapter. visitAnnotation(java.lang.String desc, boolean visible)Deprecated.AnnotationVisitorRemappingMethodAdapter. visitAnnotation(java.lang.String desc, boolean visible)Deprecated.AnnotationVisitorMethodRemapper. visitAnnotationDefault()AnnotationVisitorRemappingMethodAdapter. visitAnnotationDefault()Deprecated.AnnotationVisitorAnnotationRemapper. visitArray(java.lang.String name)AnnotationVisitorRemappingAnnotationAdapter. visitArray(java.lang.String name)Deprecated.AnnotationVisitorMethodRemapper. visitInsnAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorRemappingMethodAdapter. visitInsnAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)Deprecated.AnnotationVisitorLocalVariablesSorter. visitLocalVariableAnnotation(int typeRef, TypePath typePath, Label[] start, Label[] end, int[] index, java.lang.String desc, boolean visible)AnnotationVisitorMethodRemapper. visitLocalVariableAnnotation(int typeRef, TypePath typePath, Label[] start, Label[] end, int[] index, java.lang.String desc, boolean visible)AnnotationVisitorRemappingMethodAdapter. visitLocalVariableAnnotation(int typeRef, TypePath typePath, Label[] start, Label[] end, int[] index, java.lang.String desc, boolean visible)Deprecated.AnnotationVisitorMethodRemapper. visitParameterAnnotation(int parameter, java.lang.String desc, boolean visible)AnnotationVisitorRemappingMethodAdapter. visitParameterAnnotation(int parameter, java.lang.String desc, boolean visible)Deprecated.AnnotationVisitorMethodRemapper. visitTryCatchAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorRemappingMethodAdapter. visitTryCatchAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)Deprecated.AnnotationVisitorClassRemapper. visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorFieldRemapper. visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorMethodRemapper. visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorRemappingClassAdapter. visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)Deprecated.AnnotationVisitorRemappingFieldAdapter. visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)Deprecated.AnnotationVisitorRemappingMethodAdapter. visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)Deprecated.Methods in org.objectweb.asm.commons with parameters of type AnnotationVisitor Modifier and Type Method Description protected AnnotationVisitorClassRemapper. createAnnotationRemapper(AnnotationVisitor av)protected AnnotationVisitorRemappingClassAdapter. createRemappingAnnotationAdapter(AnnotationVisitor av)Deprecated.Constructors in org.objectweb.asm.commons with parameters of type AnnotationVisitor Constructor Description AnnotationRemapper(int api, AnnotationVisitor av, Remapper remapper)AnnotationRemapper(AnnotationVisitor av, Remapper remapper)RemappingAnnotationAdapter(int api, AnnotationVisitor av, Remapper remapper)Deprecated.RemappingAnnotationAdapter(AnnotationVisitor av, Remapper remapper)Deprecated. -
Uses of AnnotationVisitor in org.objectweb.asm.tree
Subclasses of AnnotationVisitor in org.objectweb.asm.tree Modifier and Type Class Description classAnnotationNodeA node that represents an annotation.classLocalVariableAnnotationNodeA node that represents a type annotation on a local or resource variable.classTypeAnnotationNodeA node that represents a type annotationn.Methods in org.objectweb.asm.tree that return AnnotationVisitor Modifier and Type Method Description AnnotationVisitorAnnotationNode. visitAnnotation(java.lang.String name, java.lang.String desc)AnnotationVisitorClassNode. visitAnnotation(java.lang.String desc, boolean visible)AnnotationVisitorFieldNode. visitAnnotation(java.lang.String desc, boolean visible)AnnotationVisitorMethodNode. visitAnnotation(java.lang.String desc, boolean visible)AnnotationVisitorMethodNode. visitAnnotationDefault()AnnotationVisitorAnnotationNode. visitArray(java.lang.String name)AnnotationVisitorMethodNode. visitInsnAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorMethodNode. visitLocalVariableAnnotation(int typeRef, TypePath typePath, Label[] start, Label[] end, int[] index, java.lang.String desc, boolean visible)AnnotationVisitorMethodNode. visitParameterAnnotation(int parameter, java.lang.String desc, boolean visible)AnnotationVisitorMethodNode. visitTryCatchAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorClassNode. visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorFieldNode. visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorMethodNode. visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)Methods in org.objectweb.asm.tree with parameters of type AnnotationVisitor Modifier and Type Method Description voidAnnotationNode. accept(AnnotationVisitor av)Makes the given visitor visit this annotation. -
Uses of AnnotationVisitor in org.objectweb.asm.util
Subclasses of AnnotationVisitor in org.objectweb.asm.util Modifier and Type Class Description classCheckAnnotationAdapterAnAnnotationVisitorthat checks that its methods are properly used.classTraceAnnotationVisitorAnAnnotationVisitorthat prints the annotations it visits with aPrinter.Methods in org.objectweb.asm.util that return AnnotationVisitor Modifier and Type Method Description AnnotationVisitorCheckAnnotationAdapter. visitAnnotation(java.lang.String name, java.lang.String desc)AnnotationVisitorCheckClassAdapter. visitAnnotation(java.lang.String desc, boolean visible)AnnotationVisitorCheckFieldAdapter. visitAnnotation(java.lang.String desc, boolean visible)AnnotationVisitorCheckMethodAdapter. visitAnnotation(java.lang.String desc, boolean visible)AnnotationVisitorTraceAnnotationVisitor. visitAnnotation(java.lang.String name, java.lang.String desc)AnnotationVisitorTraceClassVisitor. visitAnnotation(java.lang.String desc, boolean visible)AnnotationVisitorTraceFieldVisitor. visitAnnotation(java.lang.String desc, boolean visible)AnnotationVisitorTraceMethodVisitor. visitAnnotation(java.lang.String desc, boolean visible)AnnotationVisitorCheckMethodAdapter. visitAnnotationDefault()AnnotationVisitorTraceMethodVisitor. visitAnnotationDefault()AnnotationVisitorCheckAnnotationAdapter. visitArray(java.lang.String name)AnnotationVisitorTraceAnnotationVisitor. visitArray(java.lang.String name)AnnotationVisitorCheckMethodAdapter. visitInsnAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorTraceMethodVisitor. visitInsnAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorCheckMethodAdapter. visitLocalVariableAnnotation(int typeRef, TypePath typePath, Label[] start, Label[] end, int[] index, java.lang.String desc, boolean visible)AnnotationVisitorTraceMethodVisitor. visitLocalVariableAnnotation(int typeRef, TypePath typePath, Label[] start, Label[] end, int[] index, java.lang.String desc, boolean visible)AnnotationVisitorCheckMethodAdapter. visitParameterAnnotation(int parameter, java.lang.String desc, boolean visible)AnnotationVisitorTraceMethodVisitor. visitParameterAnnotation(int parameter, java.lang.String desc, boolean visible)AnnotationVisitorCheckMethodAdapter. visitTryCatchAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorTraceMethodVisitor. visitTryCatchAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorCheckClassAdapter. visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorCheckFieldAdapter. visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorCheckMethodAdapter. visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorTraceClassVisitor. visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorTraceFieldVisitor. visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorTraceMethodVisitor. visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)Constructors in org.objectweb.asm.util with parameters of type AnnotationVisitor Constructor Description CheckAnnotationAdapter(AnnotationVisitor av)TraceAnnotationVisitor(AnnotationVisitor av, Printer p) -
Uses of AnnotationVisitor in org.objectweb.asm.xml
Subclasses of AnnotationVisitor in org.objectweb.asm.xml Modifier and Type Class Description classSAXAnnotationAdapterSAXAnnotationAdapterMethods in org.objectweb.asm.xml that return AnnotationVisitor Modifier and Type Method Description AnnotationVisitorSAXAnnotationAdapter. visitAnnotation(java.lang.String name, java.lang.String desc)AnnotationVisitorSAXClassAdapter. visitAnnotation(java.lang.String desc, boolean visible)AnnotationVisitorSAXCodeAdapter. visitAnnotation(java.lang.String desc, boolean visible)AnnotationVisitorSAXFieldAdapter. visitAnnotation(java.lang.String desc, boolean visible)AnnotationVisitorSAXCodeAdapter. visitAnnotationDefault()AnnotationVisitorSAXAnnotationAdapter. visitArray(java.lang.String name)AnnotationVisitorSAXCodeAdapter. visitInsnAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorSAXCodeAdapter. visitLocalVariableAnnotation(int typeRef, TypePath typePath, Label[] start, Label[] end, int[] index, java.lang.String desc, boolean visible)AnnotationVisitorSAXCodeAdapter. visitParameterAnnotation(int parameter, java.lang.String desc, boolean visible)AnnotationVisitorSAXCodeAdapter. visitTryCatchAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorSAXClassAdapter. visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorSAXCodeAdapter. visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)AnnotationVisitorSAXFieldAdapter. visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String desc, boolean visible)
-