antlr.debug
Class ParserTokenEvent

java.lang.Object
  |
  +--java.util.EventObject
        |
        +--antlr.debug.Event
              |
              +--antlr.debug.ParserTokenEvent
All Implemented Interfaces:
Serializable

public class ParserTokenEvent
extends Event

Untamed:

See Also:
Serialized Form

Field Summary
private  int amount
           
static int CONSUME
          Enabled:
static int LA
          Enabled:
private  int value
           
 
Fields inherited from class antlr.debug.Event
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
ParserTokenEvent(Object source)
          Enabled:
ParserTokenEvent(Object source, int type, int amount, int value)
          Enabled:
 
Method Summary
 int getAmount()
          Enabled:
 int getValue()
          Enabled:
(package private)  void setAmount(int amount)
           
(package private)  void setValue(int value)
           
(package private)  void setValues(int type, int amount, int value)
          This should NOT be called from anyone other than ParserEventSupport!
 String toString()
          Suppressed:
 
Methods inherited from class antlr.debug.Event
getType, setType, setValues
 
Methods inherited from class java.util.EventObject
getSource
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

value

private int value

amount

private int amount

LA

public static int LA
Enabled:


CONSUME

public static int CONSUME
Enabled:

Constructor Detail

ParserTokenEvent

public ParserTokenEvent(Object source)
Enabled:


ParserTokenEvent

public ParserTokenEvent(Object source,
                        int type,
                        int amount,
                        int value)
Enabled:

Method Detail

getAmount

public int getAmount()
Enabled:


getValue

public int getValue()
Enabled:


setAmount

void setAmount(int amount)

setValue

void setValue(int value)

setValues

void setValues(int type,
               int amount,
               int value)
This should NOT be called from anyone other than ParserEventSupport!


toString

public String toString()
Suppressed:

Overrides:
toString in class EventObject
Returns:
A a String representation of this EventObject.


comments?