5 public abstract class GuessingEventArgs
: ANTLREventArgs
7 public GuessingEventArgs()
10 public GuessingEventArgs(int type
) : base(type
)
14 public virtual int Guessing
16 get { return guessing_; }
17 set { this.guessing_ = value; }
20 private int guessing_
;
23 /// <summary>This should NOT be called from anyone other than ParserEventSupport!
25 public virtual void setValues(int type
, int guessing
)
28 this.Guessing
= guessing
;