KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > antlr > debug > SyntacticPredicateEvent


1 package antlr.debug;
2
3 public class SyntacticPredicateEvent extends GuessingEvent {
4
5
6     public SyntacticPredicateEvent(Object JavaDoc source) {
7         super(source);
8     }
9     public SyntacticPredicateEvent(Object JavaDoc 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 JavaDoc toString() {
17         return "SyntacticPredicateEvent [" + getGuessing() + "]";
18     }
19 }
Popular Tags