Package mockit.asm.annotations
Class AnnotationVisitor
java.lang.Object
mockit.asm.annotations.AnnotationVisitor
A visitor to visit a Java annotation, in the following order: (
visit
| visitEnum
|
visitAnnotation
| visitArray
)* visitEnd
.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription@org.checkerframework.checker.index.qual.NonNegative int
getSize()
Returns the size of this annotation list.void
put
(ByteVector out) Puts the annotations of this annotation writer list into the given byte vector.static void
put
(ByteVector out, AnnotationVisitor[] anns) Puts the given annotation lists into the given byte vector.void
setNext
(AnnotationVisitor next) Sets the visitor to thenext
annotation.
-
Constructor Details
-
AnnotationVisitor
-
-
Method Details
-
setNext
Sets the visitor to thenext
annotation. -
getSize
public @org.checkerframework.checker.index.qual.NonNegative int getSize()Returns the size of this annotation list. -
put
Puts the annotations of this annotation writer list into the given byte vector. -
put
Puts the given annotation lists into the given byte vector.
-