~ubuntu-branches/ubuntu/breezy/antlr/breezy

« back to all changes in this revision

Viewing changes to lib/csharp/src/antlr.debug/GuessingEventArgs.cs

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2005-06-29 16:11:22 UTC
  • mfrom: (0.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050629161122-g81crc3z92p5xhsg
Tags: 2.7.5-6ubuntu4
Build depend on java-gcj-compat-dev, depend on java-gcj-compat.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
namespace antlr.debug
2
 
{
3
 
        using System;
4
 
        
5
 
        public abstract class GuessingEventArgs : ANTLREventArgs
6
 
        {
7
 
                public GuessingEventArgs()
8
 
                {
9
 
                }
10
 
                public GuessingEventArgs(int type) : base(type)
11
 
                {
12
 
                }
13
 
 
14
 
                public virtual int Guessing
15
 
                {
16
 
                        get     { return guessing_;                     }
17
 
                        set     { this.guessing_ = value;       }
18
 
                }
19
 
 
20
 
                private int guessing_;
21
 
                
22
 
                
23
 
                /// <summary>This should NOT be called from anyone other than ParserEventSupport! 
24
 
                /// </summary>
25
 
                public virtual void  setValues(int type, int guessing)
26
 
                {
27
 
                        setValues(type);
28
 
                        this.Guessing = guessing;
29
 
                }
30
 
        }
 
1
namespace antlr.debug
 
2
{
 
3
        using System;
 
4
        
 
5
        public abstract class GuessingEventArgs : ANTLREventArgs
 
6
        {
 
7
                public GuessingEventArgs()
 
8
                {
 
9
                }
 
10
                public GuessingEventArgs(int type) : base(type)
 
11
                {
 
12
                }
 
13
 
 
14
                public virtual int Guessing
 
15
                {
 
16
                        get     { return guessing_;                     }
 
17
                        set     { this.guessing_ = value;       }
 
18
                }
 
19
 
 
20
                private int guessing_;
 
21
                
 
22
                
 
23
                /// <summary>This should NOT be called from anyone other than ParserEventSupport! 
 
24
                /// </summary>
 
25
                public virtual void  setValues(int type, int guessing)
 
26
                {
 
27
                        setValues(type);
 
28
                        this.Guessing = guessing;
 
29
                }
 
30
        }
31
31
}
 
 
b'\\ No newline at end of file'