*** empty log message ***
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / InputLanguageCollection.cs
1 //\r
2 // System.Windows.Forms.InputLanguageCollection.cs\r
3 //\r
4 // Author:\r
5 //   stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)\r
6 //   Dennis Hayes (dennish@Raytek.com)\r
7 //\r
8 // (C) 2002 Ximian, Inc\r
9 //\r
10 using System.Collections;\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 InputLanguageCollection : ReadOnlyCollectionBase {\r
19 \r
20                 //\r
21                 //  --- Public Properties\r
22                 //\r
23 \r
24                 [MonoTODO]\r
25                 public InputLanguage this[int index] {\r
26                         get {\r
27                                 throw new NotImplementedException ();\r
28                         }\r
29                 }\r
30 \r
31                 //\r
32                 //  --- Public Methods\r
33                 //\r
34 \r
35                 [MonoTODO]\r
36                 public bool Contains(InputLanguage lang)\r
37                 {\r
38                         throw new NotImplementedException ();\r
39                 }\r
40 \r
41                 [MonoTODO]\r
42                 public void CopyTo(InputLanguage[] array, int index)\r
43                 {\r
44                         throw new NotImplementedException ();\r
45                 }\r
46 \r
47                 [MonoTODO]\r
48                 public override bool Equals(object o)\r
49                 {\r
50                         throw new NotImplementedException ();\r
51                 }\r
52 \r
53                 //public static bool Equals(object o1, object o2)\r
54                 //{\r
55                 //      throw new NotImplementedException ();\r
56                 //}\r
57 \r
58                 [MonoTODO]\r
59                 public override int GetHashCode() {\r
60                         //FIXME add our proprities\r
61                         return base.GetHashCode();\r
62                 }\r
63 \r
64                 [MonoTODO]\r
65                 public int IndexOf(InputLanguage lang)\r
66                 {\r
67                         throw new NotImplementedException ();\r
68                 }\r
69  }\r
70 }\r