| java.lang.Object com.tc.asm.tree.MemberNode
All known Subclasses: com.tc.asm.tree.MethodNode, com.tc.asm.tree.ClassNode, com.tc.asm.tree.FieldNode,
MemberNode | abstract public class MemberNode (Code) | | An abstract class, field or method node.
author: Eric Bruneton |
Field Summary | |
public List | attrs The non standard attributes of this class, field or method. | public List | invisibleAnnotations The runtime invisible annotations of this class, field or method. | public List | visibleAnnotations The runtime visible annotations of this class, field or method. |
Method Summary | |
public AnnotationVisitor | visitAnnotation(String desc, boolean visible) Visits an annotation of this class, field or method.
Parameters: desc - the class descriptor of the annotation class. Parameters: visible - true if the annotation is visible at runtime. | public void | visitAttribute(Attribute attr) Visits a non standard attribute of this class, field or method. | public void | visitEnd() Visits the end of this class, field or method. |
attrs | public List attrs(Code) | | 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(Code) | | 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(Code) | | The runtime visible annotations of this class, field or method. This list
is a list of
AnnotationNode objects. May be null.
|
visitAnnotation | public AnnotationVisitor visitAnnotation(String desc, boolean visible)(Code) | | Visits an annotation of this class, field or method.
Parameters: desc - the class descriptor of the annotation class. Parameters: visible - true if the annotation is visible at runtime. a visitor to visit the annotation values. |
visitAttribute | public void visitAttribute(Attribute attr)(Code) | | Visits a non standard attribute of this class, field or method.
Parameters: attr - an attribute. |
visitEnd | public void visitEnd()(Code) | | Visits the end of this class, field or method.
|
|
|