KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > persistence > antlr > debug > InputBufferAdapter


1 package persistence.antlr.debug;
2
3 /** A dummy implementation of a CharBufferListener -- this class is not
4   * meant to be used by itself -- it's meant to be subclassed */

5 public abstract class InputBufferAdapter implements InputBufferListener {
6
7
8     public void doneParsing(TraceEvent e) {
9     }
10 /**
11  * charConsumed method comment.
12  */

13 public void inputBufferConsume(InputBufferEvent e) {
14 }
15 /**
16  * charLA method comment.
17  */

18 public void inputBufferLA(InputBufferEvent e) {
19 }
20     public void inputBufferMark(InputBufferEvent e) {}
21     public void inputBufferRewind(InputBufferEvent e) {}
22     public void refresh() {
23     }
24 }
25
Popular Tags