Cosmetic issues with member signitures
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / GridItemCollection.cs
1 //
2 // System.Windows.Forms.GridItemCollection.cs
3 //
4 // Author:
5 //   stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)
6 //   Dennis Hayes (dennish@Raytek.com)
7 //
8 // (C) 2002/3 Ximian, Inc
9 //
10 using System.Collections;
11
12 namespace System.Windows.Forms {
13
14         // <summary>
15         // </summary>
16
17     public abstract class GridItemCollection : ICollection, IEnumerable {
18
19                 //
20                 //  --- Public Properties
21                 //
22                 [MonoTODO]
23                 public virtual int Count {
24                         get {
25                                 throw new NotImplementedException ();
26                         }
27                 }
28                 [MonoTODO]
29                 public GridItem this[string str] {
30                         get {
31                                 throw new NotImplementedException ();
32                         }
33                 }
34
35                 //
36                 //  --- Public Methods
37                 //
38
39                 [MonoTODO]
40                 public IEnumerator GetEnumerator()
41                 {
42                         throw new NotImplementedException ();
43                 }
44                 /// <summary>
45                 /// ICollection Interface implmentation.
46                 /// </summary>
47                 int ICollection.Count{
48                         get{
49                                 throw new NotImplementedException ();
50                         }
51                 }
52                 bool ICollection.IsSynchronized{
53                         get{
54                                 throw new NotImplementedException ();
55                         }
56                 }
57                 object ICollection.SyncRoot{
58                         get{
59                                 throw new NotImplementedException ();
60                         }
61                 }
62                 void ICollection.CopyTo(Array array, int index){
63                         throw new NotImplementedException ();
64                 }
65                 // End Of ICollection
66         }
67 }