Package org.apache.bcel.classfile
Class LineNumberTable
java.lang.Object
org.apache.bcel.classfile.Attribute
org.apache.bcel.classfile.LineNumberTable
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 org.apache.bcel.classfile.Attribute
constant_pool, length, name_index, tag
-
Constructor Summary
ConstructorDescriptionLineNumberTable
(int name_index, int length, LineNumber[] line_number_table, ConstantPool constant_pool) -
Method Summary
Modifier and TypeMethodDescriptionvoid
Called by objects that are traversing the nodes of the tree implicitely defined by the contents of a Java class.copy
(ConstantPool _constant_pool) void
dump
(DataOutputStream file) Dump line number table attribute to file stream in binary format.int
getSourceLine
(int pos) Map byte code positions to source code lines.int
void
setLineNumberTable
(LineNumber[] lineNumberTable) toString()
Methods inherited from class org.apache.bcel.classfile.Attribute
addAttributeReader, addAttributeReader, clone, getConstantPool, getLength, getName, getNameIndex, getTag, println, readAttribute, 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:
dump
in classAttribute
- Parameters:
file
- Output file stream- Throws:
IOException
- if an I/O Exception occurs in writeShort
-
getLineNumberTable
- Returns:
- Array of (pc offset, line number) pairs.
-
setLineNumberTable
- Parameters:
lineNumberTable
- 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 int getTableLength()
-