class CLLocalVariableInfo extends Object
Modifier and Type | Field and Description |
---|---|
int |
descriptorIndex
local_variable_table_entry.descriptor_index item.
|
int |
index
local_variable_table_entry.index item.
|
int |
length
local_variable_table_entry.length item.
|
int |
nameIndex
local_variable_table_entry.name_index item.
|
int |
startPC
local_variable_table_entry.start_pc item.
|
Constructor and Description |
---|
CLLocalVariableInfo(int startPC,
int length,
int nameIndex,
int descriptorIndex,
int index)
Construct a CLLocalVariableInfo object.
|
Modifier and Type | Method and Description |
---|---|
void |
write(CLOutputStream out)
Write the contents of this object to the specified output stream.
|
void |
writeToStdOut(PrettyPrinter p)
Write the contents of this object to STDOUT in a format similar to that
of javap.
|
public int startPC
public int length
public int nameIndex
public int descriptorIndex
public int index
public CLLocalVariableInfo(int startPC, int length, int nameIndex, int descriptorIndex, int index)
startPC
- local_variable_table_entry.start_pc item.length
- local_variable_table_entry.length item.nameIndex
- local_variable_table_entry.name_index item.descriptorIndex
- local_variable_table_entry.descriptor_index item.index
- local_variable_table_entry.index item.public void write(CLOutputStream out) throws IOException
out
- output stream.IOException
- if an error occurs while writing.public void writeToStdOut(PrettyPrinter p)
p
- for pretty printing with indentation.