KickJava   Java API By Example, From Geeks To Geeks.

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


1 package persistence.antlr.debug;
2
3 public class InputBufferReporter implements InputBufferListener {
4
5
6 /**
7  * doneParsing method comment.
8  */

9 public void doneParsing(TraceEvent e) {
10 }
11     public void inputBufferChanged(InputBufferEvent e) {
12         System.out.println(e);
13     }
14 /**
15  * charBufferConsume method comment.
16  */

17 public void inputBufferConsume(InputBufferEvent e) {
18     System.out.println(e);
19 }
20 /**
21  * charBufferLA method comment.
22  */

23 public void inputBufferLA(InputBufferEvent e) {
24     System.out.println(e);
25 }
26     public void inputBufferMark(InputBufferEvent e) {
27         System.out.println(e);
28     }
29     public void inputBufferRewind(InputBufferEvent e) {
30         System.out.println(e);
31     }
32 /**
33  * refresh method comment.
34  */

35 public void refresh() {
36 }
37 }
38
Popular Tags