1 package antlr.debug; 2 3 public interface ParserTokenListener extends ListenerBase { 4 5 6 public void parserConsume(ParserTokenEvent e); 7 public void parserLA(ParserTokenEvent e); 8 } 9