public class LocalDebugInfo
extends java.lang.Object
LocalVariableTable| Constructor and Description |
|---|
LocalDebugInfo(int startPC,
int length,
int nameIndex,
int typeIndex,
int index)
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
clone() |
int |
index()
Get the index of this variable into the local variable array for the
method.
|
int |
length()
Get the length of the live range of the variable.
|
int |
nameIndex()
Get the index into the constant pool of the name of the variable.
|
int |
startPC()
Get the start PC of the live range of the variable.
|
java.lang.String |
toString()
Returns a string representation of the attribute.
|
int |
typeIndex()
Get the index into the constant pool of the type descriptor of the
variable.
|
public LocalDebugInfo(int startPC,
int length,
int nameIndex,
int typeIndex,
int index)
startPC - The start PC of the live range of the variable.length - The length of the live range of the variable.nameIndex - The index into the constant pool of the name of the variable.typeIndex - The index into the constant pool of the type descriptor of the
variable.index - The index of this variable into the local variable array for
the method.public int startPC()
public int length()
public int nameIndex()
public int typeIndex()
public int index()
public java.lang.Object clone()
clone in class java.lang.Objectpublic java.lang.String toString()
toString in class java.lang.Object