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

编译器/解释器

开发平台:

Others

  1. package antlr.debug;
  2. /** A dummy implementation of a CharBufferListener -- this class is not
  3.   * meant to be used by itself -- it's meant to be subclassed */
  4. public abstract class InputBufferAdapter implements InputBufferListener {
  5. public void doneParsing(TraceEvent e) {
  6. }
  7. /**
  8.  * charConsumed method comment.
  9.  */
  10. public void inputBufferConsume(InputBufferEvent e) {
  11. }
  12. /**
  13.  * charLA method comment.
  14.  */
  15. public void inputBufferLA(InputBufferEvent e) {
  16. }
  17. public void inputBufferMark(InputBufferEvent e) {}
  18. public void inputBufferRewind(InputBufferEvent e) {}
  19. public void refresh() {
  20. }
  21. }