Package javassist.bytecode
Class ExceptionsAttribute
- java.lang.Object
-
- javassist.bytecode.AttributeInfo
-
- javassist.bytecode.ExceptionsAttribute
-
public class ExceptionsAttribute extends AttributeInfo
Exceptions_attribute.
-
-
Constructor Summary
Constructors Constructor Description ExceptionsAttribute(ConstPool cp)Constructs a new exceptions attribute.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AttributeInfocopy(ConstPool newCp, Map<String,String> classnames)Makes a copy.intgetException(int nth)Returns the value ofexception_index_table[nth].int[]getExceptionIndexes()Returnsexception_index_table[].String[]getExceptions()Returns the names of exceptions that the method may throw.voidsetExceptionIndexes(int[] elist)Setsexception_index_table[].voidsetExceptions(String[] elist)Sets the names of exceptions that the method may throw.inttableLength()Returnsnumber_of_exceptions.-
Methods inherited from class javassist.bytecode.AttributeInfo
get, getConstPool, getName, length, set
-
-
-
-
Field Detail
-
tag
public static final String tag
The name of this attribute"Exceptions".- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ExceptionsAttribute
public ExceptionsAttribute(ConstPool cp)
Constructs a new exceptions attribute.- Parameters:
cp- constant pool table.
-
-
Method Detail
-
copy
public AttributeInfo copy(ConstPool newCp, Map<String,String> classnames)
Makes a copy. Class names are replaced according to the givenMapobject.- Overrides:
copyin classAttributeInfo- Parameters:
newCp- the constant pool table used by the new copy.classnames- pairs of replaced and substituted class names. It can benull.
-
getExceptionIndexes
public int[] getExceptionIndexes()
Returnsexception_index_table[].
-
getExceptions
public String[] getExceptions()
Returns the names of exceptions that the method may throw.
-
setExceptionIndexes
public void setExceptionIndexes(int[] elist)
Setsexception_index_table[].
-
setExceptions
public void setExceptions(String[] elist)
Sets the names of exceptions that the method may throw.
-
tableLength
public int tableLength()
Returnsnumber_of_exceptions.
-
getException
public int getException(int nth)
Returns the value ofexception_index_table[nth].
-
-