SemanticPredicateEventpublic class SemanticPredicateEvent extends GuessingEvent
Fields Summary |
---|
public static final int | VALIDATING | public static final int | PREDICTING | private int | condition | private boolean | result |
Constructors Summary |
---|
public SemanticPredicateEvent(Object source)
super(source);
| public SemanticPredicateEvent(Object source, int type)
super(source, type);
|
Methods Summary |
---|
public int | getCondition()
return condition;
| public boolean | getResult()
return result;
| void | setCondition(int condition)
this.condition = condition;
| void | setResult(boolean result)
this.result = result;
| void | setValues(int type, int condition, boolean result, int guessing)This should NOT be called from anyone other than ParserEventSupport!
super.setValues(type, guessing);
setCondition(condition);
setResult(result);
| public java.lang.String | toString()
return "SemanticPredicateEvent [" +
getCondition() + "," + getResult() + "," + getGuessing() + "]";
|
|