01: package persistence.antlr.debug;
02:
03: public class InputBufferReporter implements InputBufferListener {
04:
05: /**
06: * doneParsing method comment.
07: */
08: public void doneParsing(TraceEvent e) {
09: }
10:
11: public void inputBufferChanged(InputBufferEvent e) {
12: System.out.println(e);
13: }
14:
15: /**
16: * charBufferConsume method comment.
17: */
18: public void inputBufferConsume(InputBufferEvent e) {
19: System.out.println(e);
20: }
21:
22: /**
23: * charBufferLA method comment.
24: */
25: public void inputBufferLA(InputBufferEvent e) {
26: System.out.println(e);
27: }
28:
29: public void inputBufferMark(InputBufferEvent e) {
30: System.out.println(e);
31: }
32:
33: public void inputBufferRewind(InputBufferEvent e) {
34: System.out.println(e);
35: }
36:
37: /**
38: * refresh method comment.
39: */
40: public void refresh() {
41: }
42: }
|