(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Windows.Forms / WINELib / InputLanguageCollection.cs
blobc94455253200f61835396c69bebbc8d38a621d8c
1 //
2 // System.Windows.Forms.InputLanguageCollection.cs
3 //
4 // Author:
5 // stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)
6 // Dennis Hayes (dennish@Raytek.com)
7 //
8 // (C) 2002 Ximian, Inc
9 //
10 using System.Collections;
11 namespace System.Windows.Forms {
13 // <summary>
14 // This is only a template. Nothing is implemented yet.
16 // </summary>
18 public class InputLanguageCollection : ReadOnlyCollectionBase {
21 // --- Public Properties
24 [MonoTODO]
25 public InputLanguage this[int index] {
26 get {
27 throw new NotImplementedException ();
32 // --- Public Methods
35 [MonoTODO]
36 public bool Contains(InputLanguage lang)
38 throw new NotImplementedException ();
41 [MonoTODO]
42 public void CopyTo(InputLanguage[] array, int index)
44 throw new NotImplementedException ();
47 [MonoTODO]
48 public override bool Equals(object o)
50 throw new NotImplementedException ();
54 [MonoTODO]
55 public override int GetHashCode() {
56 //FIXME add our proprities
57 return base.GetHashCode();
60 [MonoTODO]
61 public int IndexOf(InputLanguage lang)
63 throw new NotImplementedException ();
65 //public static bool Equals(object o1, object o2)
66 //{
67 // throw new NotImplementedException ();
68 //}