repo.or.cz
/
castle.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added ability to order the execution of dictionary adapter behaviors.
[castle.git]
/
Experiments
/
Attic
/
Rook
/
Castle.Rook.Compiler
/
Parser
/
antlr
/
debug
/
ANTLREventArgs.cs
blob
36b8a76a457355c6a5ab15a9eb752d05c1f0f7b4
1
namespace
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
}