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

编译器/解释器

开发平台:

Others

  1. package antlr.debug;
  2. public class InputBufferReporter implements InputBufferListener {
  3. /**
  4.  * doneParsing method comment.
  5.  */
  6. public void doneParsing(TraceEvent e) {
  7. }
  8. public void inputBufferChanged(InputBufferEvent e) {
  9. System.out.println(e);
  10. }
  11. /**
  12.  * charBufferConsume method comment.
  13.  */
  14. public void inputBufferConsume(InputBufferEvent e) {
  15. System.out.println(e);
  16. }
  17. /**
  18.  * charBufferLA method comment.
  19.  */
  20. public void inputBufferLA(InputBufferEvent e) {
  21. System.out.println(e);
  22. }
  23. public void inputBufferMark(InputBufferEvent e) {
  24. System.out.println(e);
  25. }
  26. public void inputBufferRewind(InputBufferEvent e) {
  27. System.out.println(e);
  28. }
  29. /**
  30.  * refresh method comment.
  31.  */
  32. public void refresh() {
  33. }
  34. }