soot.coffi
Class Exception_attribute

java.lang.Object
  |
  +--soot.coffi.attribute_info
        |
        +--soot.coffi.Exception_attribute

public class Exception_attribute
extends soot.coffi.attribute_info

There should be exactly one Exceptions attribute in every method, indicating the types of exceptions the method might throw.

See Also:
attribute_info, method_info.attributes

Field Summary
 long attribute_length
          Length of attribute in bytes.
 int attribute_name
          Constant pool index of the name of this attribute; should be a utf8 String matching one of the constant Strings define here.
static java.lang.String Code
          String by which a Code attribute is recognized.
static java.lang.String ConstantValue
          String by which a ConstantValue attribute is recognized.
 int[] exception_index_table
          Constant pool indices of CONSTANT_Class types representing exceptions the associated method might throw.
static java.lang.String Exceptions
          String by which an Exceptions attribute is recognized.
static java.lang.String LineNumberTable
          String by which a LineNumberTable attribute is recognized.
static java.lang.String LocalVariableTable
          String by which a LocalVariableTable attribute is recognized.
 int number_of_exceptions
          Length of exception table array.
static java.lang.String SourceFile
          String by which a SourceFile attribute is recognized.
 
Constructor Summary
Exception_attribute()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

number_of_exceptions

public int number_of_exceptions
Length of exception table array.

exception_index_table

public int[] exception_index_table
Constant pool indices of CONSTANT_Class types representing exceptions the associated method might throw.
See Also:
CONSTANT_Class_info

SourceFile

public static final java.lang.String SourceFile
String by which a SourceFile attribute is recognized.
See Also:
SourceFile_attribute

ConstantValue

public static final java.lang.String ConstantValue
String by which a ConstantValue attribute is recognized.
See Also:
ConstantValue_attribute

Code

public static final java.lang.String Code
String by which a Code attribute is recognized.
See Also:
Code_attribute

Exceptions

public static final java.lang.String Exceptions
String by which an Exceptions attribute is recognized.
See Also:
Exceptions_attribute

LineNumberTable

public static final java.lang.String LineNumberTable
String by which a LineNumberTable attribute is recognized.
See Also:
LineNumberTable_attribute

LocalVariableTable

public static final java.lang.String LocalVariableTable
String by which a LocalVariableTable attribute is recognized.
See Also:
LocalVariableTable_attribute

attribute_name

public int attribute_name
Constant pool index of the name of this attribute; should be a utf8 String matching one of the constant Strings define here.
See Also:
attribute_info.SourceFile, attribute_info.ConstantValue, attribute_info.Code, attribute_info.Exceptions, attribute_info.LineNumberTable, attribute_info.LocalVariableTable, CONSTANT_Utf8_info

attribute_length

public long attribute_length
Length of attribute in bytes.
Constructor Detail

Exception_attribute

public Exception_attribute()