antlr.debug
Class InputBufferEvent

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

public class InputBufferEvent
extends Event

Untamed:

See Also:
Serialized Form

Field Summary
(package private)  char c
           
static int CONSUME
          Enabled:
static int LA
          Enabled:
(package private)  int lookaheadAmount
           
static int MARK
          Enabled:
static int REWIND
          Enabled:
 
Fields inherited from class antlr.debug.Event
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
InputBufferEvent(Object source)
          Enabled: CharBufferEvent constructor comment.
InputBufferEvent(Object source, int type, char c, int lookaheadAmount)
          Enabled: CharBufferEvent constructor comment.
 
Method Summary
 char getChar()
          Enabled:
 int getLookaheadAmount()
          Enabled:
(package private)  void setChar(char c)
           
(package private)  void setLookaheadAmount(int la)
           
(package private)  void setValues(int type, char c, int la)
          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

c

char c

lookaheadAmount

int lookaheadAmount

CONSUME

public static final int CONSUME
Enabled:


LA

public static final int LA
Enabled:


MARK

public static final int MARK
Enabled:


REWIND

public static final int REWIND
Enabled:

Constructor Detail

InputBufferEvent

public InputBufferEvent(Object source)
Enabled: CharBufferEvent constructor comment.

Parameters:
source - java.lang.Object

InputBufferEvent

public InputBufferEvent(Object source,
                        int type,
                        char c,
                        int lookaheadAmount)
Enabled: CharBufferEvent constructor comment.

Parameters:
source - java.lang.Object
Method Detail

getChar

public char getChar()
Enabled:


getLookaheadAmount

public int getLookaheadAmount()
Enabled:


setChar

void setChar(char c)

setLookaheadAmount

void setLookaheadAmount(int la)

setValues

void setValues(int type,
               char c,
               int la)
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?