Uses of Class
com.googlecode.aviator.asm.AnnotationVisitor
-
Packages that use AnnotationVisitor Package Description com.googlecode.aviator.asm -
-
Uses of AnnotationVisitor in com.googlecode.aviator.asm
Subclasses of AnnotationVisitor in com.googlecode.aviator.asm Modifier and Type Class Description (package private) classAnnotationWriterAnAnnotationVisitorthat generates annotations in bytecode form.Fields in com.googlecode.aviator.asm declared as AnnotationVisitor Modifier and Type Field Description protected AnnotationVisitorAnnotationVisitor. avThe annotation visitor to which this visitor must delegate method calls.Methods in com.googlecode.aviator.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.AnnotationVisitorAnnotationWriter. visitAnnotation(java.lang.String name, java.lang.String desc)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.AnnotationVisitorFieldWriter. visitAnnotation(java.lang.String desc, boolean visible)AnnotationVisitorMethodVisitor. visitAnnotation(java.lang.String desc, boolean visible)Visits an annotation of this method.AnnotationVisitorMethodWriter. visitAnnotation(java.lang.String desc, boolean visible)AnnotationVisitorMethodVisitor. visitAnnotationDefault()Visits the default value of this annotation interface method.AnnotationVisitorMethodWriter. visitAnnotationDefault()AnnotationVisitorAnnotationVisitor. visitArray(java.lang.String name)Visits an array value of the annotation.AnnotationVisitorAnnotationWriter. visitArray(java.lang.String name)AnnotationVisitorMethodVisitor. visitParameterAnnotation(int parameter, java.lang.String desc, boolean visible)Visits an annotation of a parameter this method.AnnotationVisitorMethodWriter. visitParameterAnnotation(int parameter, java.lang.String desc, boolean visible)Methods in com.googlecode.aviator.asm with parameters of type AnnotationVisitor Modifier and Type Method Description private intClassReader. readAnnotationValue(int v, char[] buf, java.lang.String name, AnnotationVisitor av)Reads a value of an annotation and makes the given visitor visit it.private intClassReader. readAnnotationValues(int v, char[] buf, boolean named, AnnotationVisitor av)Reads the values of an annotation and makes the given visitor visit them.Constructors in com.googlecode.aviator.asm with parameters of type AnnotationVisitor Constructor Description AnnotationVisitor(int api, AnnotationVisitor av)Constructs a newAnnotationVisitor.
-