Package jminusminus
Class CLLocalVariableInfo
java.lang.Object
jminusminus.CLLocalVariableInfo
Representation of local_variable_table entry structure.
-
Field Summary
Modifier and TypeFieldDescriptionint
local_variable_table_entry.descriptor_index item.int
local_variable_table_entry.index item.int
local_variable_table_entry.length item.int
local_variable_table_entry.name_index item.int
local_variable_table_entry.start_pc item. -
Constructor Summary
ConstructorDescriptionCLLocalVariableInfo
(int startPC, int length, int nameIndex, int descriptorIndex, int index) Construct a CLLocalVariableInfo object. -
Method Summary
Modifier and TypeMethodDescriptionvoid
write
(CLOutputStream out) Write the contents of this object to the specified output stream.
-
Field Details
-
startPC
public int startPClocal_variable_table_entry.start_pc item. -
length
public int lengthlocal_variable_table_entry.length item. -
nameIndex
public int nameIndexlocal_variable_table_entry.name_index item. -
descriptorIndex
public int descriptorIndexlocal_variable_table_entry.descriptor_index item. -
index
public int indexlocal_variable_table_entry.index item.
-
-
Constructor Details
-
CLLocalVariableInfo
public CLLocalVariableInfo(int startPC, int length, int nameIndex, int descriptorIndex, int index) Construct a CLLocalVariableInfo object.- Parameters:
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.
-
-
Method Details
-
write
Write the contents of this object to the specified output stream.- Parameters:
out
- output stream.- Throws:
IOException
- if an error occurs while writing.
-