FileDocCategorySizeDatePackage
LineNumberNode.javaAPI DocGlassfish v2 API2752Thu Mar 02 11:51:16 GMT 2006oracle.toplink.libraries.asm.tree

LineNumberNode

public class LineNumberNode extends Object
A node that represents a line number declaration.
author
Eric Bruneton

Fields Summary
public int
line
A line number. This number refers to the source file from which the class was compiled.
public Label
start
The first instruction corresponding to this line number.
Constructors Summary
public LineNumberNode(int line, Label start)
Constructs a new {@link LineNumberNode LineNumberNode} object.

param
line a line number. This number refers to the source file from which the class was compiled.
param
start the first instruction corresponding to this line number.

    this.line = line;
    this.start = start;
  
Methods Summary
public voidaccept(oracle.toplink.libraries.asm.CodeVisitor cv)
Makes the given code visitor visit this line number declaration.

param
cv a code visitor.

    cv.visitLineNumber(line, start);