Package jminusminus
Class CLLocalVariableInfo
java.lang.Object
jminusminus.CLLocalVariableInfo
Representation of local_variable_table entry structure.
- 
Field SummaryFieldsModifier and TypeFieldDescriptionintlocal_variable_table_entry.descriptor_index item.intlocal_variable_table_entry.index item.intlocal_variable_table_entry.length item.intlocal_variable_table_entry.name_index item.intlocal_variable_table_entry.start_pc item.
- 
Constructor SummaryConstructorsConstructorDescriptionCLLocalVariableInfo(int startPC, int length, int nameIndex, int descriptorIndex, int index) Construct a CLLocalVariableInfo object.
- 
Method SummaryModifier and TypeMethodDescriptionvoidwrite(CLOutputStream out) Write the contents of this object to the specified output stream.
- 
Field Details- 
startPCpublic int startPClocal_variable_table_entry.start_pc item.
- 
lengthpublic int lengthlocal_variable_table_entry.length item.
- 
nameIndexpublic int nameIndexlocal_variable_table_entry.name_index item.
- 
descriptorIndexpublic int descriptorIndexlocal_variable_table_entry.descriptor_index item.
- 
indexpublic int indexlocal_variable_table_entry.index item.
 
- 
- 
Constructor Details- 
CLLocalVariableInfopublic 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- 
writeWrite the contents of this object to the specified output stream.- Parameters:
- out- output stream.
- Throws:
- IOException- if an error occurs while writing.
 
 
-