Package org.apache.bcel.classfile
Class ParameterAnnotations
- java.lang.Object
-
- org.apache.bcel.classfile.Attribute
-
- org.apache.bcel.classfile.ParameterAnnotations
-
- All Implemented Interfaces:
java.lang.Cloneable
,Node
- Direct Known Subclasses:
RuntimeInvisibleParameterAnnotations
,RuntimeVisibleParameterAnnotations
public abstract class ParameterAnnotations extends Attribute
base class for parameter annotations- Since:
- 6.0
-
-
Field Summary
-
Fields inherited from class org.apache.bcel.classfile.Attribute
constant_pool, length, name_index, tag
-
-
Constructor Summary
Constructors Constructor Description ParameterAnnotations(byte parameterAnnotationType, int nameIndex, int length, ParameterAnnotationEntry[] parameterAnnotationTable, ConstantPool constantPool)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(Visitor v)
Called by objects that are traversing the nodes of the tree implicitely defined by the contents of a Java class.Attribute
copy(ConstantPool constant_pool)
void
dump(java.io.DataOutputStream dos)
Dump attribute to file stream in binary format.ParameterAnnotationEntry[]
getParameterAnnotationEntries()
returns the array of parameter annotation entries in this parameter annotationParameterAnnotationEntry[]
getParameterAnnotationTable()
void
setParameterAnnotationTable(ParameterAnnotationEntry[] parameterAnnotationTable)
-
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
-
-
-
-
Constructor Detail
-
ParameterAnnotations
public ParameterAnnotations(byte parameterAnnotationType, int nameIndex, int length, ParameterAnnotationEntry[] parameterAnnotationTable, ConstantPool constantPool)
- Parameters:
parameterAnnotationType
- the subclass type of the parameter annotationnameIndex
- Index pointing to the name Codelength
- Content length in bytesparameterAnnotationTable
- the actual parameter annotationsconstantPool
- Array of constants
-
-
Method Detail
-
accept
public void accept(Visitor v)
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[] parameterAnnotationTable)
- Parameters:
parameterAnnotationTable
- the entries to set in this parameter annotation
-
getParameterAnnotationTable
public final ParameterAnnotationEntry[] getParameterAnnotationTable()
- Returns:
- the parameter annotation entry table
-
getParameterAnnotationEntries
public ParameterAnnotationEntry[] getParameterAnnotationEntries()
returns the array of parameter annotation entries in this parameter annotation
-
dump
public void dump(java.io.DataOutputStream dos) throws java.io.IOException
Description copied from class:Attribute
Dump attribute to file stream in binary format.
-
copy
public Attribute copy(ConstantPool constant_pool)
-
-