Package org.apache.bcel.classfile
Class ParameterAnnotations
java.lang.Object
org.apache.bcel.classfile.Attribute
org.apache.bcel.classfile.ParameterAnnotations
- Direct Known Subclasses:
RuntimeInvisibleParameterAnnotations,RuntimeVisibleParameterAnnotations
base class for parameter annotations
- Since:
- 6.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate ParameterAnnotationEntry[]Table of parameter annotationsFields inherited from class org.apache.bcel.classfile.Attribute
constant_pool, length, name_index, tag -
Constructor Summary
ConstructorsConstructorDescriptionParameterAnnotations(byte parameter_annotation_type, int name_index, int length, DataInput input, ConstantPool constant_pool) ParameterAnnotations(byte parameter_annotation_type, int name_index, int length, ParameterAnnotationEntry[] parameter_annotation_table, 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) voiddump(DataOutputStream dos) Dump attribute to file stream in binary format.returns the array of parameter annotation entries in this parameter annotationfinal ParameterAnnotationEntry[]final voidsetParameterAnnotationTable(ParameterAnnotationEntry[] parameter_annotation_table) Methods inherited from class org.apache.bcel.classfile.Attribute
addAttributeReader, addAttributeReader, clone, getConstantPool, getLength, getName, getNameIndex, getTag, println, readAttribute, readAttribute, removeAttributeReader, setConstantPool, setLength, setNameIndex, toString
-
Field Details
-
parameter_annotation_table
Table of parameter annotations
-
-
Constructor Details
-
ParameterAnnotations
ParameterAnnotations(byte parameter_annotation_type, int name_index, int length, DataInput input, ConstantPool constant_pool) throws IOException - Parameters:
parameter_annotation_type- the subclass type of the parameter annotationname_index- Index pointing to the name Codelength- Content length in bytesinput- Input streamconstant_pool- Array of constants- Throws:
IOException
-
ParameterAnnotations
public ParameterAnnotations(byte parameter_annotation_type, int name_index, int length, ParameterAnnotationEntry[] parameter_annotation_table, ConstantPool constant_pool) - Parameters:
parameter_annotation_type- the subclass type of the parameter annotationname_index- Index pointing to the name Codelength- Content length in bytesparameter_annotation_table- the actual parameter 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. -
setParameterAnnotationTable
public final void setParameterAnnotationTable(ParameterAnnotationEntry[] parameter_annotation_table) - Parameters:
parameter_annotation_table- the entries to set in this parameter annotation
-
getParameterAnnotationTable
- Returns:
- the parameter annotation entry table
-
getParameterAnnotationEntries
returns the array of parameter annotation entries in this parameter annotation -
dump
Description copied from class:AttributeDump attribute to file stream in binary format.- Overrides:
dumpin classAttribute- Parameters:
dos- Output file stream- Throws:
IOException
-
copy
-