antlr.debug
Class SemanticPredicateEvent

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

public class SemanticPredicateEvent
extends GuessingEvent

Untamed:

See Also:
Serialized Form

Field Summary
private  int condition
           
static int PREDICTING
          Enabled:
private  boolean result
           
static int VALIDATING
          Enabled:
 
Fields inherited from class antlr.debug.GuessingEvent
 
Fields inherited from class antlr.debug.Event
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
SemanticPredicateEvent(Object source)
          Enabled:
SemanticPredicateEvent(Object source, int type)
          Enabled:
 
Method Summary
 int getCondition()
          Enabled:
 boolean getResult()
          Enabled:
(package private)  void setCondition(int condition)
           
(package private)  void setResult(boolean result)
           
(package private)  void setValues(int type, int condition, boolean result, int guessing)
          This should NOT be called from anyone other than ParserEventSupport!
 String toString()
          Suppressed:
 
Methods inherited from class antlr.debug.GuessingEvent
getGuessing, setGuessing, setValues
 
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

VALIDATING

public static final int VALIDATING
Enabled:


PREDICTING

public static final int PREDICTING
Enabled:


condition

private int condition

result

private boolean result
Constructor Detail

SemanticPredicateEvent

public SemanticPredicateEvent(Object source)
Enabled:


SemanticPredicateEvent

public SemanticPredicateEvent(Object source,
                              int type)
Enabled:

Method Detail

getCondition

public int getCondition()
Enabled:


getResult

public boolean getResult()
Enabled:


setCondition

void setCondition(int condition)

setResult

void setResult(boolean result)

setValues

void setValues(int type,
               int condition,
               boolean result,
               int guessing)
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?