Added ability to order the execution of dictionary adapter behaviors.
[castle.git] / Experiments / Attic / Rook / Castle.Rook.Compiler / Parser / antlr / debug / ANTLREventArgs.cs
blob36b8a76a457355c6a5ab15a9eb752d05c1f0f7b4
1 namespace antlr.debug
3 using System;
5 public abstract class ANTLREventArgs : EventArgs
7 public ANTLREventArgs()
10 public ANTLREventArgs(int type)
12 this.Type = type;
15 public virtual int Type
17 get
19 return this.type_;
21 set
23 this.type_ = value;
27 internal void setValues(int type)
29 this.Type = type;
32 /// <summary>
33 /// Event type.
34 /// </summary>
35 private int type_;