org.objectweb.asm.tree
Class MemberNode
public abstract class MemberNode
An abstract class, field or method node.
- Eric Bruneton
List | attrs - The non standard attributes of this class, field or method.
|
List | invisibleAnnotations - The runtime invisible annotations of this class, field or method.
|
List | visibleAnnotations - The runtime visible annotations of this class, field or method.
|
attrs
public List attrs
The non standard attributes of this class, field or method. This list is a
list of
Attribute
objects. May be
null.
invisibleAnnotations
public List invisibleAnnotations
The runtime invisible annotations of this class, field or method. This list
is a list of
AnnotationNode
objects. May be
null.
visibleAnnotations
public List visibleAnnotations
The runtime visible annotations of this class, field or method. This list
is a list of
AnnotationNode
objects. May be
null.
MemberNode
public MemberNode()
visitAnnotation
public AnnotationVisitor visitAnnotation(String desc,
boolean visible)
Visits an annotation of this class, field or method.
desc
- the class descriptor of the annotation class.visible
- true if the annotation is visible at runtime.
- a visitor to visit the annotation values.
visitAttribute
public void visitAttribute(Attribute attr)
Visits a non standard attribute of this class, field or method.
attr
- an attribute.
visitEnd
public void visitEnd()
Visits the end of this class, field or method.