GuessingEventpublic 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 int | getGuessing()
return guessing;
| void | setGuessing(int guessing)
this.guessing = guessing;
| void | setValues(int type, int guessing)This should NOT be called from anyone other than ParserEventSupport!
super.setValues(type);
setGuessing(guessing);
|
|