Class AnnotationDefault
java.lang.Object
org.apache.bcel.classfile.Attribute
org.apache.bcel.classfile.AnnotationDefault
- All Implemented Interfaces:
Serializable, Cloneable, Node
represents the default value of a annotation for a method info
- Since:
- 5.3
- See Also:
-
Field Summary
Fields inherited from class Attribute
constant_pool, length, name_index, tag -
Constructor Summary
ConstructorsConstructorDescriptionAnnotationDefault(int name_index, int length, DataInputStream file, ConstantPool constant_pool) AnnotationDefault(int name_index, int length, ElementValue defaultValue, ConstantPool constant_pool) -
Method Summary
Modifier and TypeMethodDescriptionvoidCalled by objects that are traversing the nodes of the tree implicitely defined by the contents of a Java class.copy(ConstantPool _constant_pool) final voiddump(DataOutputStream dos) Dump attribute to file stream in binary format.final ElementValuefinal voidsetDefaultValue(ElementValue defaultValue) Methods inherited from class Attribute
addAttributeReader, clone, getConstantPool, getLength, getName, getNameIndex, getTag, readAttribute, removeAttributeReader, setConstantPool, setLength, setNameIndex, toString
-
Constructor Details
-
AnnotationDefault
public AnnotationDefault(int name_index, int length, DataInputStream file, ConstantPool constant_pool) throws IOException - Parameters:
name_index- Index pointing to the name Codelength- Content length in bytesfile- Input streamconstant_pool- Array of constants- Throws:
IOException
-
AnnotationDefault
public AnnotationDefault(int name_index, int length, ElementValue defaultValue, ConstantPool constant_pool) - Parameters:
name_index- Index pointing to the name Codelength- Content length in bytesdefaultValue- the annotation's default valueconstant_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. -
setDefaultValue
- Parameters:
defaultValue- the default value of this methodinfo's annotation
-
getDefaultValue
- Returns:
- the default value
-
copy
-
dump
Description copied from class:AttributeDump attribute to file stream in binary format.- Overrides:
dumpin classAttribute- Parameters:
dos- Output file stream- Throws:
IOException
-