SyntacticPredicateEvent.java
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:0k
源码类别:

编译器/解释器

开发平台:

Others

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