InputBufferAdapter.java
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:1k
- package antlr.debug;
- /** A dummy implementation of a CharBufferListener -- this class is not
- * meant to be used by itself -- it's meant to be subclassed */
- public abstract class InputBufferAdapter implements InputBufferListener {
- public void doneParsing(TraceEvent e) {
- }
- /**
- * charConsumed method comment.
- */
- public void inputBufferConsume(InputBufferEvent e) {
- }
- /**
- * charLA method comment.
- */
- public void inputBufferLA(InputBufferEvent e) {
- }
- public void inputBufferMark(InputBufferEvent e) {}
- public void inputBufferRewind(InputBufferEvent e) {}
- public void refresh() {
- }
- }