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@NonNegative intgetSize()Returns the size of this annotation list.voidput(ByteVector out) Puts the annotations of this annotation writer list into the given byte vector.static voidput(ByteVector out, AnnotationVisitor[] anns) Puts the given annotation lists into the given byte vector.voidsetNext(AnnotationVisitor next) Sets the visitor to thenextannotation.
-
Constructor Details
-
AnnotationVisitor
-
-
Method Details
-
setNext
Sets the visitor to thenextannotation. -
getSize
public @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.
-