All Downloads are FREE. Search and download functionalities are using the official Maven repository.

persistence.antlr.debug.GuessingEvent Maven / Gradle / Ivy

There is a newer version: 2.1-60f
Show newest version
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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy