Package org.codehaus.janino.util
Class ClassFile.LocalVariableTableAttribute.Entry
- java.lang.Object
-
- 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 thelocal_variable_table
, as described in JVMS7 4.7.13.
-
-
Field Summary
Fields Modifier and Type Field Description short
descriptorIndex
The fields of the entries in thelocal_variable_table
, as described in JVMS7 4.7.13.short
index
The fields of the entries in thelocal_variable_table
, as described in JVMS7 4.7.13.short
length
The fields of the entries in thelocal_variable_table
, as described in JVMS7 4.7.13.short
nameIndex
The fields of the entries in thelocal_variable_table
, as described in JVMS7 4.7.13.short
startPC
The fields of the entries in thelocal_variable_table
, as described in JVMS7 4.7.13.
-
Constructor Summary
Constructors Constructor Description Entry(short startPc, short length, short nameIndex, short descriptorIndex, short index)
-
-
-
Field Detail
-
startPC
public final short startPC
The fields of the entries in thelocal_variable_table
, as described in JVMS7 4.7.13.
-
length
public final short length
The fields of the entries in thelocal_variable_table
, as described in JVMS7 4.7.13.
-
nameIndex
public final short nameIndex
The fields of the entries in thelocal_variable_table
, as described in JVMS7 4.7.13.
-
descriptorIndex
public final short descriptorIndex
The fields of the entries in thelocal_variable_table
, as described in JVMS7 4.7.13.
-
index
public final short index
The fields of the entries in thelocal_variable_table
, as described in JVMS7 4.7.13.
-
-