org.apache.bcel.classfile
public final class ExceptionTable extends Attribute
Code
,
Serialized FormModifier and Type | Field and Description |
---|---|
private int[] |
exception_index_table |
private int |
number_of_exceptions |
constant_pool, length, name_index, tag
Constructor and Description |
---|
ExceptionTable(ExceptionTable c)
Initialize from another object.
|
ExceptionTable(int name_index,
int length,
DataInputStream file,
ConstantPool constant_pool)
Construct object from file stream.
|
ExceptionTable(int name_index,
int length,
int[] exception_index_table,
ConstantPool constant_pool) |
Modifier and Type | Method and 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(DataOutputStream file)
Dump exceptions attribute to file stream in binary format.
|
int[] |
getExceptionIndexTable() |
String[] |
getExceptionNames() |
int |
getNumberOfExceptions() |
void |
setExceptionIndexTable(int[] exception_index_table) |
String |
toString() |
addAttributeReader, clone, getConstantPool, getLength, getNameIndex, getTag, readAttribute, removeAttributeReader, setConstantPool, setLength, setNameIndex
private int number_of_exceptions
private int[] exception_index_table
public ExceptionTable(ExceptionTable c)
public ExceptionTable(int name_index, int length, int[] exception_index_table, ConstantPool constant_pool)
name_index
- Index in constant poollength
- Content length in bytesexception_index_table
- Table of indices in constant poolconstant_pool
- Array of constantsExceptionTable(int name_index, int length, DataInputStream file, ConstantPool constant_pool) throws IOException
name_index
- Index in constant poollength
- Content length in bytesfile
- Input streamconstant_pool
- Array of constantsIOException
public void accept(Visitor v)
public final void dump(DataOutputStream file) throws IOException
dump
in class Attribute
file
- Output file streamIOException
public final int[] getExceptionIndexTable()
public final int getNumberOfExceptions()
public final String[] getExceptionNames()
public final void setExceptionIndexTable(int[] exception_index_table)
exception_index_table
- the list of exception indexes
Also redefines number_of_exceptions according to table length.public final String toString()
public Attribute copy(ConstantPool _constant_pool)