Package org.apache.bcel.classfile
Class AnnotationEntry
- java.lang.Object
-
- org.apache.bcel.classfile.AnnotationEntry
-
-
Field Summary
Fields Modifier and Type Field Description private ConstantPoolconstantPoolprivate java.util.List<ElementValuePair>elementValuePairsstatic AnnotationEntry[]EMPTY_ARRAYEmpty array of AnnotationEntry objects.private booleanisRuntimeVisibleprivate inttypeIndex
-
Constructor Summary
Constructors Constructor Description AnnotationEntry(int typeIndex, ConstantPool constantPool, boolean isRuntimeVisible)Constructs an AnnotationEntry.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(Visitor v)Called by objects that are traversing the nodes of the tree implicitly defined by the contents of a Java class.voidaddElementNameValuePair(ElementValuePair elementNameValuePair)Adds an element name value pair.static AnnotationEntry[]createAnnotationEntries(Attribute[] attributes)Creates annotation entries from attributes.voiddump(java.io.DataOutputStream dos)Dumps this annotation entry to a DataOutputStream.java.lang.StringgetAnnotationType()Gets the annotation type name.intgetAnnotationTypeIndex()Gets the annotation type index.ConstantPoolgetConstantPool()Gets the constant pool.ElementValuePair[]getElementValuePairs()Gets the element value pairs in this annotation entry.intgetNumElementValuePairs()Gets the number of element value pairs in this annotation entry.intgetTypeIndex()Gets the type index.booleanisRuntimeVisible()Gets whether this annotation is runtime visible.static AnnotationEntryread(java.io.DataInput input, ConstantPool constantPool, boolean isRuntimeVisible)Factory method to create an AnnotionEntry from a DataInput.java.lang.StringtoShortString()Gets a short string representation of this annotation.java.lang.StringtoString()
-
-
-
Field Detail
-
EMPTY_ARRAY
public static final AnnotationEntry[] EMPTY_ARRAY
Empty array of AnnotationEntry objects.
-
typeIndex
private final int typeIndex
-
constantPool
private final ConstantPool constantPool
-
isRuntimeVisible
private final boolean isRuntimeVisible
-
elementValuePairs
private final java.util.List<ElementValuePair> elementValuePairs
-
-
Constructor Detail
-
AnnotationEntry
public AnnotationEntry(int typeIndex, ConstantPool constantPool, boolean isRuntimeVisible)Constructs an AnnotationEntry.- Parameters:
typeIndex- the type index.constantPool- the constant pool.isRuntimeVisible- whether the annotation is runtime visible.
-
-
Method Detail
-
createAnnotationEntries
public static AnnotationEntry[] createAnnotationEntries(Attribute[] attributes)
Creates annotation entries from attributes.- Parameters:
attributes- the attributes.- Returns:
- the annotation entries.
-
read
public static AnnotationEntry read(java.io.DataInput input, ConstantPool constantPool, boolean isRuntimeVisible) throws java.io.IOException
Factory method to create an AnnotionEntry from a DataInput.- Parameters:
input- the input stream.constantPool- the constant pool.isRuntimeVisible- whether the annotation is runtime visible.- Returns:
- the entry.
- Throws:
java.io.IOException- if an I/O error occurs.
-
accept
public void accept(Visitor v)
Called by objects that are traversing the nodes of the tree implicitly defined by the contents of a Java class. I.e., the hierarchy of methods, fields, attributes, etc. spawns a tree of objects.
-
addElementNameValuePair
public void addElementNameValuePair(ElementValuePair elementNameValuePair)
Adds an element name value pair.- Parameters:
elementNameValuePair- the element name value pair.
-
dump
public void dump(java.io.DataOutputStream dos) throws java.io.IOExceptionDumps this annotation entry to a DataOutputStream.- Parameters:
dos- the output stream.- Throws:
java.io.IOException- if an I/O error occurs.
-
getAnnotationType
public java.lang.String getAnnotationType()
Gets the annotation type name.- Returns:
- the annotation type name.
-
getAnnotationTypeIndex
public int getAnnotationTypeIndex()
Gets the annotation type index.- Returns:
- the annotation type index.
-
getConstantPool
public ConstantPool getConstantPool()
Gets the constant pool.- Returns:
- the constant pool.
-
getElementValuePairs
public ElementValuePair[] getElementValuePairs()
Gets the element value pairs in this annotation entry.- Returns:
- the element value pairs in this annotation entry.
-
getNumElementValuePairs
public final int getNumElementValuePairs()
Gets the number of element value pairs in this annotation entry.- Returns:
- the number of element value pairs in this annotation entry.
-
getTypeIndex
public int getTypeIndex()
Gets the type index.- Returns:
- the type index.
-
isRuntimeVisible
public boolean isRuntimeVisible()
Gets whether this annotation is runtime visible.- Returns:
- true if this annotation is runtime visible.
-
toShortString
public java.lang.String toShortString()
Gets a short string representation of this annotation.- Returns:
- a short string representation of this annotation.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-