com.sun.tools.javac.jvm
Class CRTable.CRTEntry

java.lang.Object
  extended by com.sun.tools.javac.jvm.CRTable.CRTEntry
Enclosing class:
CRTable

static class CRTable.CRTEntry
extends java.lang.Object

This class contains a CharacterRangeTableEntry.


Field Summary
(package private)  int endPc
          The ending code position of this entry.
(package private)  int flags
          The flags described in the CharacterRangeTable spec.
(package private)  int startPc
          The starting code position of this entry.
(package private)  java.lang.Object tree
          A tree or a list of trees to obtain source positions.
 
Constructor Summary
CRTable.CRTEntry(java.lang.Object tree, int flags, int startPc, int endPc)
          Constructor
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

tree

java.lang.Object tree
A tree or a list of trees to obtain source positions.


flags

int flags
The flags described in the CharacterRangeTable spec.


startPc

int startPc
The starting code position of this entry.


endPc

int endPc
The ending code position of this entry.

Constructor Detail

CRTable.CRTEntry

CRTable.CRTEntry(java.lang.Object tree,
                 int flags,
                 int startPc,
                 int endPc)
Constructor