Added ability to order the execution of dictionary adapter behaviors.
[castle.git] / Experiments / Attic / Rook / Castle.Rook.Compiler / Parser / antlr / debug / GuessingEventArgs.cs
blob6d843a4e4c44a689336f421710e4824a5648e329
1 namespace antlr.debug
3 using System;
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!
24 /// </summary>
25 public virtual void setValues(int type, int guessing)
27 setValues(type);
28 this.Guessing = guessing;