Class LineNumberTable
java.lang.Object
org.apache.bcel.classfile.Attribute
org.apache.bcel.classfile.LineNumberTable
- All Implemented Interfaces:
Serializable, Cloneable, Node
This class represents a table of line numbers for debugging
purposes. This attribute is used by the Code attribute. It
contains pairs of PCs and line numbers.
- See Also:
-
Field Summary
Fields inherited from class Attribute
constant_pool, length, name_index, tag -
Constructor Summary
ConstructorsConstructorDescriptionLineNumberTable(int name_index, int length, LineNumber[] line_number_table, ConstantPool constant_pool) -
Method Summary
Modifier and TypeMethodDescriptionvoidCalled by objects that are traversing the nodes of the tree implicitely defined by the contents of a Java class.copy(ConstantPool _constant_pool) final voiddump(DataOutputStream file) Dump line number table attribute to file stream in binary format.final LineNumber[]intgetSourceLine(int pos) Map byte code positions to source code lines.final intfinal voidsetLineNumberTable(LineNumber[] line_number_table) final StringtoString()Methods inherited from class Attribute
addAttributeReader, clone, getConstantPool, getLength, getName, getNameIndex, getTag, readAttribute, removeAttributeReader, setConstantPool, setLength, setNameIndex
-
Constructor Details
-
LineNumberTable
-
LineNumberTable
public LineNumberTable(int name_index, int length, LineNumber[] line_number_table, ConstantPool constant_pool)
-
-
Method Details
-
accept
Called by objects that are traversing the nodes of the tree implicitely defined by the contents of a Java class. I.e., the hierarchy of methods, fields, attributes, etc. spawns a tree of objects. -
dump
Dump line number table attribute to file stream in binary format.- Overrides:
dumpin classAttribute- Parameters:
file- Output file stream- Throws:
IOException
-
getLineNumberTable
- Returns:
- Array of (pc offset, line number) pairs.
-
setLineNumberTable
- Parameters:
line_number_table- the line number entries for this table
-
toString
-
getSourceLine
public int getSourceLine(int pos) Map byte code positions to source code lines.- Parameters:
pos- byte code offset- Returns:
- corresponding line in source code
-
copy
-
getTableLength
public final int getTableLength()
-