GuessingEvent.java
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:1k
- package 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);
- }
- }