Package antlr.debug
Class SemanticPredicateEvent
- java.lang.Object
-
- java.util.EventObject
-
- antlr.debug.Event
-
- antlr.debug.GuessingEvent
-
- antlr.debug.SemanticPredicateEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class SemanticPredicateEvent extends GuessingEvent
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
PREDICTING
static int
VALIDATING
-
Constructor Summary
Constructors Constructor Description SemanticPredicateEvent(java.lang.Object source)
SemanticPredicateEvent(java.lang.Object source, int type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getCondition()
boolean
getResult()
(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!java.lang.String
toString()
-
Methods inherited from class antlr.debug.GuessingEvent
getGuessing, setGuessing, setValues
-
-
-
-
Field Detail
-
VALIDATING
public static final int VALIDATING
- See Also:
- Constant Field Values
-
PREDICTING
public static final int PREDICTING
- See Also:
- Constant Field Values
-
-
Method Detail
-
getCondition
public int getCondition()
-
getResult
public boolean getResult()
-
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 java.lang.String toString()
- Overrides:
toString
in classjava.util.EventObject
-
-