janino.net

org.codehaus.janino.util
Class ClassFile.LocalVariableTableAttribute.Entry

java.lang.Object
  extended by org.codehaus.janino.util.ClassFile.LocalVariableTableAttribute.Entry
Enclosing class:
ClassFile.LocalVariableTableAttribute

public static class ClassFile.LocalVariableTableAttribute.Entry
extends Object

The structure of the entries in the local_variable_table, as described in JVMS7 4.7.13.


Field Summary
 short descriptorIndex
          The fields of the entries in the local_variable_table, as described in JVMS7 4.7.13.
 short index
          The fields of the entries in the local_variable_table, as described in JVMS7 4.7.13.
 short length
          The fields of the entries in the local_variable_table, as described in JVMS7 4.7.13.
 short nameIndex
          The fields of the entries in the local_variable_table, as described in JVMS7 4.7.13.
 short startPC
          The fields of the entries in the local_variable_table, as described in JVMS7 4.7.13.
 
Constructor Summary
ClassFile.LocalVariableTableAttribute.Entry(short startPc, short length, short nameIndex, short descriptorIndex, short index)
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

startPC

public final short startPC
The fields of the entries in the local_variable_table, as described in JVMS7 4.7.13.


length

public final short length
The fields of the entries in the local_variable_table, as described in JVMS7 4.7.13.


nameIndex

public final short nameIndex
The fields of the entries in the local_variable_table, as described in JVMS7 4.7.13.


descriptorIndex

public final short descriptorIndex
The fields of the entries in the local_variable_table, as described in JVMS7 4.7.13.


index

public final short index
The fields of the entries in the local_variable_table, as described in JVMS7 4.7.13.

Constructor Detail

ClassFile.LocalVariableTableAttribute.Entry

public ClassFile.LocalVariableTableAttribute.Entry(short startPc,
                                                   short length,
                                                   short nameIndex,
                                                   short descriptorIndex,
                                                   short index)

janino.net