public final class ExceptionTable extends Attribute
Exceptions_attribute { u2 attribute_name_index; u4 attribute_length; u2 number_of_exceptions; u2 exception_index_table[number_of_exceptions]; }
Code
constant_pool, EMPTY_ARRAY, length, name_index, tag
Constructor and Description |
---|
ExceptionTable(ExceptionTable c)
Initialize from another object.
|
ExceptionTable(int nameIndex,
int length,
int[] exceptionIndexTable,
ConstantPool constantPool) |
Modifier and Type | Method and Description |
---|---|
void |
accept(Visitor v)
Called by objects that are traversing the nodes of the tree implicitly defined by the contents of a Java class.
|
Attribute |
copy(ConstantPool constantPool) |
void |
dump(DataOutputStream file)
Dump exceptions attribute to file stream in binary format.
|
int[] |
getExceptionIndexTable() |
String[] |
getExceptionNames() |
int |
getNumberOfExceptions() |
void |
setExceptionIndexTable(int[] exceptionIndexTable) |
String |
toString() |
addAttributeReader, addAttributeReader, clone, getConstantPool, getLength, getName, getNameIndex, getTag, println, readAttribute, readAttribute, removeAttributeReader, setConstantPool, setLength, setNameIndex
public ExceptionTable(ExceptionTable c)
c
- Source to copy.public ExceptionTable(int nameIndex, int length, int[] exceptionIndexTable, ConstantPool constantPool)
nameIndex
- Index in constant poollength
- Content length in bytesexceptionIndexTable
- Table of indices in constant poolconstantPool
- Array of constantspublic void accept(Visitor v)
public Attribute copy(ConstantPool constantPool)
public void dump(DataOutputStream file) throws IOException
dump
in class Attribute
file
- Output file streamIOException
- if an I/O error occurs.public int[] getExceptionIndexTable()
public String[] getExceptionNames()
public int getNumberOfExceptions()
public void setExceptionIndexTable(int[] exceptionIndexTable)
exceptionIndexTable
- the list of exception indexes Also redefines number_of_exceptions according to table
length.Copyright © 2004–2024 The Apache Software Foundation. All rights reserved.