org.objectweb.asm.tree
public class AnnotationNode extends Object implements AnnotationVisitor
| Field Summary | |
|---|---|
| String | desc
The class descriptor of the annotation class. |
| List | values
The name value pairs of this annotation. |
| Constructor Summary | |
|---|---|
| AnnotationNode(String desc)
Constructs a new AnnotationNode.
| |
| Method Summary | |
|---|---|
| void | accept(AnnotationVisitor av)
Makes the given visitor visit this annotation.
|
| void | visit(String name, Object value) |
| AnnotationVisitor | visitAnnotation(String name, String desc) |
| AnnotationVisitor | visitArray(String name) |
| void | visitEnd() |
| void | visitEnum(String name, String desc, String value) |
Parameters: desc the class descriptor of the annotation class.
Parameters: av an annotation visitor. Maybe null.