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

GuessingEvent

public abstract class GuessingEvent extends Event

Fields Summary
private int
guessing
Constructors Summary
public GuessingEvent(Object source)

		super(source);
	
public GuessingEvent(Object source, int type)

		super(source, type);
	
Methods Summary
public intgetGuessing()

		return guessing;
	
voidsetGuessing(int guessing)

		this.guessing = guessing;
	
voidsetValues(int type, int guessing)
This should NOT be called from anyone other than ParserEventSupport!

		super.setValues(type);
		setGuessing(guessing);