Class Annotations
java.lang.Object
org.apache.bcel.classfile.Attribute
org.apache.bcel.classfile.Annotations
- All Implemented Interfaces:
Serializable, Cloneable, Node
- Direct Known Subclasses:
RuntimeInvisibleAnnotations, RuntimeVisibleAnnotations
-
Field Summary
Fields inherited from class Attribute
constant_pool, length, name_index, tag -
Constructor Summary
ConstructorsConstructorDescriptionAnnotations(byte annotation_type, int name_index, int length, DataInputStream file, ConstantPool constant_pool, boolean isRuntimeVisible) Annotations(byte annotation_type, int name_index, int length, AnnotationEntry[] annotation_table, ConstantPool constant_pool, boolean isRuntimeVisible) -
Method Summary
Modifier and TypeMethodDescriptionvoidCalled by objects that are traversing the nodes of the tree implicitely defined by the contents of a Java class.returns the array of annotation entries in this annotationfinal intbooleanfinal voidsetAnnotationTable(AnnotationEntry[] annotation_table) protected voidMethods inherited from class Attribute
addAttributeReader, clone, copy, dump, getConstantPool, getLength, getName, getNameIndex, getTag, readAttribute, removeAttributeReader, setConstantPool, setLength, setNameIndex, toString
-
Constructor Details
-
Annotations
public Annotations(byte annotation_type, int name_index, int length, DataInputStream file, ConstantPool constant_pool, boolean isRuntimeVisible) throws IOException - Parameters:
annotation_type- the subclass type of the annotationname_index- Index pointing to the name Codelength- Content length in bytesfile- Input streamconstant_pool- Array of constants- Throws:
IOException
-
Annotations
public Annotations(byte annotation_type, int name_index, int length, AnnotationEntry[] annotation_table, ConstantPool constant_pool, boolean isRuntimeVisible) - Parameters:
annotation_type- the subclass type of the annotationname_index- Index pointing to the name Codelength- Content length in bytesannotation_table- the actual annotationsconstant_pool- Array of constants
-
-
Method Details
-
accept
Called by objects that are traversing the nodes of the tree implicitely defined by the contents of a Java class. I.e., the hierarchy of methods, fields, attributes, etc. spawns a tree of objects. -
setAnnotationTable
- Parameters:
annotation_table- the entries to set in this annotation
-
getAnnotationEntries
returns the array of annotation entries in this annotation -
getNumAnnotations
public final int getNumAnnotations()- Returns:
- the number of annotation entries in this annotation
-
isRuntimeVisible
public boolean isRuntimeVisible() -
writeAnnotations
- Throws:
IOException
-