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

GuessingEvent.java

package persistence.antlr.debug;

public abstract class GuessingEvent extends Event {
	private int guessing;


	public GuessingEvent(Object source) {
		super(source);
	}
	public GuessingEvent(Object source, int type) {
		super(source, type);
	}
	public int getGuessing() {
		return guessing;
	}
	void setGuessing(int guessing) {
		this.guessing = guessing;
	}
	/** This should NOT be called from anyone other than ParserEventSupport! */
	void setValues(int type, int guessing) {
		super.setValues(type);
		setGuessing(guessing);
	}
}