org.apache.bcel.classfile

Class LineNumberTable

Implemented Interfaces:
Cloneable, Node, Serializable

public final class LineNumberTable
extends Attribute

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.

Version:
$Id: LineNumberTable.java,v 1.3 2002/12/08 16:04:37 mdahm Exp $

Author:
M. Dahm

See Also:
Code, LineNumber

Nested Class Summary

Field Summary

Fields inherited from class org.apache.bcel.classfile.Attribute

constant_pool, length, name_index, tag

Constructor Summary

LineNumberTable(int name_index, int length, LineNumber line_number_table, ConstantPool constant_pool)
LineNumberTable(LineNumberTable c)

Method Summary

void
accept(Visitor v)
Called by objects that are traversing the nodes of the tree implicitely defined by the contents of a Java class.
Attribute
copy(ConstantPool constant_pool)
void
dump(DataOutputStream file)
Dump line number table attribute to file stream in binary format.
LineNumber[]
getLineNumberTable()
int
getSourceLine(int pos)
Map byte code positions to source code lines.
int
getTableLength()
void
setLineNumberTable(LineNumber line_number_table)
String
toString()

Methods inherited from class org.apache.bcel.classfile.Attribute

accept, addAttributeReader, clone, copy, dump, getConstantPool, getLength, getNameIndex, getTag, readAttribute, removeAttributeReader, setConstantPool, setLength, setNameIndex, toString

Constructor Details

LineNumberTable

public LineNumberTable(int name_index,
                       int length,
                       LineNumber line_number_table,
                       ConstantPool constant_pool)


LineNumberTable

public LineNumberTable(LineNumberTable c)

Method Details

accept

public void accept(Visitor v)
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.
Specified by:
accept in interface Node
Overrides:
accept in interface Attribute

Parameters:
v - Visitor object


copy

public Attribute copy(ConstantPool constant_pool)
Overrides:
copy in interface Attribute

Returns:
deep copy of this attribute


dump

public final void dump(DataOutputStream file)
            throws IOException
Dump line number table attribute to file stream in binary format.
Overrides:
dump in interface Attribute

Parameters:
file - Output file stream


getLineNumberTable

public final LineNumber[] getLineNumberTable()

Returns:
Array of (pc offset, line number) pairs.


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


getTableLength

public final int getTableLength()


setLineNumberTable

public final void setLineNumberTable(LineNumber line_number_table)

Parameters:


toString

public final String toString()
Overrides:
toString in interface Attribute

Returns:
String representation.