Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle TopLink
11g Release 1 (11.1.1)

B32476-02


oracle.toplink.libraries.asm.tree
Class LineNumberNode

java.lang.Object
  extended by oracle.toplink.libraries.asm.tree.LineNumberNode


public class LineNumberNode
extends java.lang.Object

A node that represents a line number declaration.


Field Summary
 int line
          A line number.
 Label start
          The first instruction corresponding to this line number.

 

Constructor Summary
LineNumberNode(int line, Label start)
          Constructs a new LineNumberNode object.

 

Method Summary
 void accept(CodeVisitor cv)
          Makes the given code visitor visit this line number declaration.

 

Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

 

Field Detail

line

public int line
Description copied from class: LineNumberNode
A line number. This number refers to the source file from which the class was compiled.

start

public Label start
Description copied from class: LineNumberNode
The first instruction corresponding to this line number.

Constructor Detail

LineNumberNode

public LineNumberNode(int line,
                      Label start)
Constructs a new LineNumberNode object.
Parameters:
line - a line number. This number refers to the source file from which the class was compiled.
start - the first instruction corresponding to this line number.

Method Detail

accept

public void accept(CodeVisitor cv)
Makes the given code visitor visit this line number declaration.
Parameters:
cv - a code visitor.

Skip navigation links

Copyright © 1998, 2009, Oracle. All Rights Reserved.