01: package persistence.antlr.debug;
02:
03: /** A dummy implementation of a CharBufferListener -- this class is not
04: * meant to be used by itself -- it's meant to be subclassed */
05: public abstract class InputBufferAdapter implements InputBufferListener {
06:
07: public void doneParsing(TraceEvent e) {
08: }
09:
10: /**
11: * charConsumed method comment.
12: */
13: public void inputBufferConsume(InputBufferEvent e) {
14: }
15:
16: /**
17: * charLA method comment.
18: */
19: public void inputBufferLA(InputBufferEvent e) {
20: }
21:
22: public void inputBufferMark(InputBufferEvent e) {
23: }
24:
25: public void inputBufferRewind(InputBufferEvent e) {
26: }
27:
28: public void refresh() {
29: }
30: }
|