| java.lang.Object EDU.purdue.cs.bloat.reflect.LocalDebugInfo
Constructor Summary | |
public | LocalDebugInfo(int startPC, int length, int nameIndex, int typeIndex, int index) Constructor. |
Method Summary | |
public Object | clone() | public int | index() Get the index of this variable into the local variable array for the
method. | public int | length() Get the length of the live range of the variable. | public int | nameIndex() Get the index into the constant pool of the name of the variable. | public int | startPC() Get the start PC of the live range of the variable. | public String | toString() Returns a string representation of the attribute. | public int | typeIndex() Get the index into the constant pool of the type descriptor of the
variable. |
LocalDebugInfo | public LocalDebugInfo(int startPC, int length, int nameIndex, int typeIndex, int index)(Code) | | Constructor.
Parameters: startPC - The start PC of the live range of the variable. Parameters: length - The length of the live range of the variable. Parameters: nameIndex - The index into the constant pool of the name of the variable. Parameters: typeIndex - The index into the constant pool of the type descriptor of thevariable. Parameters: index - The index of this variable into the local variable array forthe method. |
index | public int index()(Code) | | Get the index of this variable into the local variable array for the
method.
The index of this variable into the local variable array for themethod. |
length | public int length()(Code) | | Get the length of the live range of the variable.
The length of the live range of the variable. |
nameIndex | public int nameIndex()(Code) | | Get the index into the constant pool of the name of the variable.
The index into the constant pool of the name of the variable. |
startPC | public int startPC()(Code) | | Get the start PC of the live range of the variable.
The start PC of the live range of the variable. |
toString | public String toString()(Code) | | Returns a string representation of the attribute.
|
typeIndex | public int typeIndex()(Code) | | Get the index into the constant pool of the type descriptor of the
variable.
The index into the constant pool of the type descriptor of thevariable. |
|
|