*** empty log message ***
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / GridTableStylesCollection.cs
1 //\r
2 // System.Windows.Forms.GridTableStylesCollection.cs\r
3 //\r
4 // Author:\r
5 //   stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)\r
6 //\r
7 // (C) 2002 Ximian, Inc\r
8 //\r
9 using System.Collections;\r
10 using System.ComponentModel;\r
11 namespace System.Windows.Forms {\r
12 \r
13         // <summary>\r
14         //      This is only a template.  Nothing is implemented yet.\r
15         //\r
16         // </summary>\r
17 \r
18     public class GridTableStylesCollection : BaseCollection, IList {\r
19 \r
20                 //\r
21                 //  --- Public Properties\r
22                 //\r
23                 [MonoTODO]\r
24                 public DataGridTableStyle this[int index]  {\r
25                         get {\r
26                                 throw new NotImplementedException ();\r
27                         }\r
28                 }\r
29                 [MonoTODO]\r
30                 public DataGridTableStyle this[string s]  {\r
31                         get {\r
32                                 throw new NotImplementedException ();\r
33                         }\r
34                 }\r
35 \r
36                 //\r
37                 //  --- Public Methods\r
38                 //\r
39                 [MonoTODO]\r
40                 public virtual int Add(DataGridTableStyle table)\r
41                 {\r
42                         throw new NotImplementedException ();\r
43                 }\r
44                 [MonoTODO]\r
45                 public virtual void AddRange(DataGridTableStyle[] tables)\r
46                 {\r
47                         throw new NotImplementedException ();\r
48                 }\r
49                 [MonoTODO]\r
50                 public virtual void Clear()\r
51                 {\r
52                         throw new NotImplementedException ();\r
53                 }\r
54                 [MonoTODO]\r
55                 public virtual bool Equals(object o)\r
56                 {\r
57                         throw new NotImplementedException ();\r
58                 }\r
59                 [MonoTODO]\r
60                 public static bool Equals(object o1, object o2)\r
61                 {\r
62                         throw new NotImplementedException ();\r
63                 }\r
64                 [MonoTODO]\r
65                 public bool Contains(DataGridTableStyle table)\r
66                 {\r
67                         throw new NotImplementedException ();\r
68                 }\r
69                 [MonoTODO]\r
70                 public void Remove(DataGridTableStyle table)\r
71                 {\r
72                         throw new NotImplementedException ();\r
73                 }\r
74                 [MonoTODO]\r
75                 public void RemoveAt(int index)\r
76                 {\r
77                         throw new NotImplementedException ();\r
78                 }\r
79 \r
80                 //\r
81                 //  --- Public Events\r
82                 //\r
83                 [MonoTODO]\r
84                 public event CollectionChangeEventHandler CollectionChanged;\r
85 \r
86                 //\r
87                 //  --- Protected Properties\r
88                 //\r
89                 [MonoTODO]\r
90                 protected override ArrayList List {\r
91                         get {\r
92                                 throw new NotImplementedException ();\r
93                         }\r
94                 }\r
95 \r
96                 //\r
97                 //  --- Protected Methods\r
98                 //\r
99                 [MonoTODO]\r
100                 protected void OnCollectionChanged(CollectionChangeEventArgs cevent)\r
101                 {\r
102                         throw new NotImplementedException ();\r
103                 }\r
104          }\r
105 }\r