source: trunk/yao/share/antlr-2.7.7/lib/csharp/antlr.runtime/antlr.debug/ANTLREventArgs.cs @ 1

Last change on this file since 1 was 1, checked in by lnalod, 15 years ago

Initial import of YAO sources

File size: 451 bytes
Line 
1namespace antlr.debug
2{
3        using System;
4       
5        public abstract class ANTLREventArgs : EventArgs
6        {
7                public ANTLREventArgs()
8                {
9                }
10                public ANTLREventArgs(int type)
11                {
12                        this.Type = type;
13                }
14       
15                public virtual int Type
16                {
17                        get
18                        {
19                                return this.type_;
20                        }
21                        set
22                        {
23                                this.type_ = value;
24                        }
25                }
26
27                internal void setValues(int type)
28                {
29                        this.Type = type;
30                }
31
32                /// <summary>
33                /// Event type.
34                /// </summary>
35                private int type_;
36        }
37}
Note: See TracBrowser for help on using the repository browser.