1	package antlr.debug;
2	
3	public class SyntacticPredicateEvent extends GuessingEvent {
4	
5	
6		public SyntacticPredicateEvent(Object source) {
7			super(source);
8		}
9		public SyntacticPredicateEvent(Object source, int type) {
10			super(source, type);
11		}
12		/** This should NOT be called from anyone other than ParserEventSupport! */
13		void setValues(int type, int guessing) {
14			super.setValues(type, guessing);
15		}
16		public String toString() {
17			return "SyntacticPredicateEvent [" + getGuessing() + "]";
18		}
19	}
20