FileDocCategorySizeDatePackage
InputBufferAdapter.javaAPI DocGlassfish v2 API606Wed Feb 08 12:31:18 GMT 2006persistence.antlr.debug

InputBufferAdapter.java

package persistence.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() {
	}
}