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) class
AnnotationWriter
AnAnnotationVisitor
that generates annotations in bytecode form.Fields in com.googlecode.aviator.asm declared as AnnotationVisitor Modifier and Type Field Description protected AnnotationVisitor
AnnotationVisitor. av
The annotation visitor to which this visitor must delegate method calls.Methods in com.googlecode.aviator.asm that return AnnotationVisitor Modifier and Type Method Description AnnotationVisitor
AnnotationVisitor. visitAnnotation(java.lang.String name, java.lang.String desc)
Visits a nested annotation value of the annotation.AnnotationVisitor
AnnotationWriter. visitAnnotation(java.lang.String name, java.lang.String desc)
AnnotationVisitor
ClassVisitor. visitAnnotation(java.lang.String desc, boolean visible)
Visits an annotation of the class.AnnotationVisitor
ClassWriter. visitAnnotation(java.lang.String desc, boolean visible)
AnnotationVisitor
FieldVisitor. visitAnnotation(java.lang.String desc, boolean visible)
Visits an annotation of the field.AnnotationVisitor
FieldWriter. visitAnnotation(java.lang.String desc, boolean visible)
AnnotationVisitor
MethodVisitor. visitAnnotation(java.lang.String desc, boolean visible)
Visits an annotation of this method.AnnotationVisitor
MethodWriter. visitAnnotation(java.lang.String desc, boolean visible)
AnnotationVisitor
MethodVisitor. visitAnnotationDefault()
Visits the default value of this annotation interface method.AnnotationVisitor
MethodWriter. visitAnnotationDefault()
AnnotationVisitor
AnnotationVisitor. visitArray(java.lang.String name)
Visits an array value of the annotation.AnnotationVisitor
AnnotationWriter. visitArray(java.lang.String name)
AnnotationVisitor
MethodVisitor. visitParameterAnnotation(int parameter, java.lang.String desc, boolean visible)
Visits an annotation of a parameter this method.AnnotationVisitor
MethodWriter. 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 int
ClassReader. 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 int
ClassReader. 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
.
-