* Stubed rest of System.ComponentModel
[mono.git] / mcs / class / System / System.ComponentModel / TypeListConverter.cs
1 //
2 // System.ComponentModel.TypeListConverter
3 //
4 // Authors:
5 //      Martin Willemoes Hansen (mwh@sysrq.dk)
6 //
7 // (C) 2003 Martin Willemoes Hansen
8 //
9
10 using System.Collections;
11 using System.Globalization;
12
13 namespace System.ComponentModel
14 {
15         public abstract class TypeListConverter : TypeConverter
16         {
17                 [MonoTODO]
18                 protected TypeListConverter (Type[] types)
19                 {
20                 }
21
22                 [MonoTODO]
23                 public override bool CanConvertFrom (ITypeDescriptorContext context,
24                                                      Type sourceType)
25                 {
26                         throw new NotImplementedException();
27                 }
28
29                 [MonoTODO]
30                 public override bool CanConvertTo (ITypeDescriptorContext context,
31                                                    Type destinationType)
32                 {
33                         throw new NotImplementedException();
34                 }
35
36                 [MonoTODO]
37                 public override object ConvertFrom (ITypeDescriptorContext context,
38                                                     CultureInfo culture,
39                                                     object value)
40                 {
41                         throw new NotImplementedException();
42                 }
43
44                 [MonoTODO]
45                 public override object ConvertTo (ITypeDescriptorContext context,
46                                                   CultureInfo culture,
47                                                   object value,
48                                                   Type destinationType)
49                 {
50                         throw new NotImplementedException();
51                 }
52
53                 [MonoTODO]
54                 public override StandardValuesCollection GetStandardValues (ITypeDescriptorContext context)
55                 {
56                         throw new NotImplementedException();
57                 }
58
59                 [MonoTODO]
60                 public override bool GetStandardValuesExclusive (ITypeDescriptorContext context)
61                 {
62                         throw new NotImplementedException();
63                 }
64
65                 [MonoTODO]
66                 public override bool GetStandardValuesSupported (ITypeDescriptorContext context)
67                 {
68                         throw new NotImplementedException();
69                 }
70
71                 [MonoTODO]
72                 ~TypeListConverter()
73                 {
74                 }
75         }
76 }