01: package antlr.debug;
02:
03: public class SyntacticPredicateEvent extends GuessingEvent {
04:
05: public SyntacticPredicateEvent(Object source) {
06: super (source);
07: }
08:
09: public SyntacticPredicateEvent(Object source, int type) {
10: super (source, type);
11: }
12:
13: /** This should NOT be called from anyone other than ParserEventSupport! */
14: void setValues(int type, int guessing) {
15: super .setValues(type, guessing);
16: }
17:
18: public String toString() {
19: return "SyntacticPredicateEvent [" + getGuessing() + "]";
20: }
21: }
|