Fixed "extra byte" problem (see ChangeLong)
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / ItemCheckEventArgs.cs
1 //
2 // System.Windows.Forms.ItemCheckEventArgs
3 //
4 // Author:
5 //   stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)
6 //
7 // (C) 2002 Ximian, Inc
8 //
9
10 namespace System.Windows.Forms {
11
12         // <summary>
13         //      This is only a template.  Nothing is implemented yet.
14         //
15         // </summary>
16
17         //public class ItemCheckEventArgs : EventArgs {
18
19                 //
20                 //  --- Constructor
21                 //
22                 //[MonoTODO]
23                 //public ItemCheckEventArgs(int index,  CheckState newCheckValue CheckState currentValue )
24                 //{
25                 //      throw new NotImplementedException ();
26                 //}
27
28                 //
29                 //  --- Public Properties
30                 //
31                 //[MonoTODO]
32                 //public CheckState CurrentValue {
33                 //      get {
34                 //              throw new NotImplementedException ();
35                 //      }
36                 //}
37                 //[MonoTODO]
38                 //public int Index {
39                 //      get {
40                 //              throw new NotImplementedException ();
41                 //      }
42                 //}
43                 //[MonoTODO]
44                 //public CheckState NewValue {
45                 //      get {
46                 //              throw new NotImplementedException ();
47                 //      }
48                 //      set {
49                 //              throw new NotImplementedException ();
50                 //      }
51                 //}
52
53                 //
54                 //  --- Public Methods
55                 //
56                 //[MonoTODO]
57                 //public virtual bool Equals(object o);
58                 //{
59                 //      throw new NotImplementedException ();
60                 //}
61                 //[MonoTODO]
62                 //public static bool Equals(object o1, object o2);
63                 //{
64                 //      throw new NotImplementedException ();
65                 //}
66         // }
67 }