soot.coffi
Class LineNumberTable_attribute

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

public class LineNumberTable_attribute
extends soot.coffi.attribute_info

A debugging attribute, this associates blocks of bytecode with specific source code line numbers.

See Also:
attribute_info

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.
static java.lang.String Exceptions
          String by which an Exceptions attribute is recognized.
 soot.coffi.line_number_table_entry[] line_number_table
          Line number table.
 int line_number_table_length
          Length of the line_number_table array.
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.
static java.lang.String SourceFile
          String by which a SourceFile attribute is recognized.
 
Constructor Summary
LineNumberTable_attribute()
           
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

line_number_table_length

public int line_number_table_length
Length of the line_number_table array.


line_number_table

public soot.coffi.line_number_table_entry[] line_number_table
Line number table.

See Also:
line_number_table_entry

SourceFile

public static final java.lang.String SourceFile
String by which a SourceFile attribute is recognized.

See Also:
SourceFile_attribute, Constant Field Values

ConstantValue

public static final java.lang.String ConstantValue
String by which a ConstantValue attribute is recognized.

See Also:
ConstantValue_attribute, Constant Field Values

Code

public static final java.lang.String Code
String by which a Code attribute is recognized.

See Also:
Code_attribute, Constant Field Values

Exceptions

public static final java.lang.String Exceptions
String by which an Exceptions attribute is recognized.

See Also:
Exception_attribute, Constant Field Values

LineNumberTable

public static final java.lang.String LineNumberTable
String by which a LineNumberTable attribute is recognized.

See Also:
LineNumberTable_attribute, Constant Field Values

LocalVariableTable

public static final java.lang.String LocalVariableTable
String by which a LocalVariableTable attribute is recognized.

See Also:
LocalVariableTable_attribute, Constant Field Values

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

LineNumberTable_attribute

public LineNumberTable_attribute()
Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object