Class ClassFile.LocalVariableTableAttribute.Entry

  • Enclosing class:
    ClassFile.LocalVariableTableAttribute

    public static class ClassFile.LocalVariableTableAttribute.Entry
    extends java.lang.Object
    The structure of the entries in the local_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 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

      Constructors 
      Constructor Description
      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

      • Entry

        public Entry​(short startPc,
                     short length,
                     short nameIndex,
                     short descriptorIndex,
                     short index)