janino.net

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

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

public static class ClassFile.LineNumberTableAttribute.Entry
extends Object

The structure of the entries in the line_number_table, as described in JVMS7 4.7.12.


Field Summary
 int lineNumber
          The fields of the entries in the line_number_table, as described in JVMS7 4.7.12.
 int startPC
          The fields of the entries in the line_number_table, as described in JVMS7 4.7.12.
 
Constructor Summary
ClassFile.LineNumberTableAttribute.Entry(int startPc, int lineNumber)
           
 
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 int startPC
The fields of the entries in the line_number_table, as described in JVMS7 4.7.12.


lineNumber

public final int lineNumber
The fields of the entries in the line_number_table, as described in JVMS7 4.7.12.

Constructor Detail

ClassFile.LineNumberTableAttribute.Entry

public ClassFile.LineNumberTableAttribute.Entry(int startPc,
                                                int lineNumber)

janino.net