*** empty log message ***
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / ListBindingConverter.cs
index d8927b6a76cc114bf65d254fb3bf64eb6871c4d4..56105d65e649978b73d0dbdf945fccbffdb0d867 100644 (file)
@@ -3,9 +3,13 @@
 //
 // Author:
 //   stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)
+//     Dennis Hayes (dennish@raytek.com)\r
 //
 // (C) 2002 Ximian, Inc
 //
+using System.Globalization;
+using System.ComponentModel;
+using System.Collections;
 
 namespace System.Windows.Forms {
 
@@ -13,197 +17,198 @@ namespace System.Windows.Forms {
        //      This is only a template.  Nothing is implemented yet.
        //
        // </summary>
-
     public class ListBindingConverter : TypeConverter {
 
                //
                //  --- Constructor
                //
-               //[MonoTODO]
-               //public ListBindingConverter()
-               //{
-               //      throw new NotImplementedException ();
-               //}
+               [MonoTODO]
+               public ListBindingConverter()
+               {
+                       throw new NotImplementedException ();
+               }
 
                //
                //  --- Public Methods
                //
-               //[MonoTODO]
+               //\r
+               \r
+               [MonoTODO]
+               public bool CanConvertTo(Type t) {
+                       throw new NotImplementedException ();
+               }
+               [MonoTODO]
+               public override bool CanConvertTo(ITypeDescriptorContext context, Type t) {
+                       throw new NotImplementedException ();
+               }
+               [MonoTODO]
+               public object ConvertTo(object o, Type t) {
+                       throw new NotImplementedException ();
+               }
+               [MonoTODO]
+               public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object o, Type t) {
+                       throw new NotImplementedException ();
+               }
+               [MonoTODO]
+               public override object CreateInstance(ITypeDescriptorContext context, IDictionary dict) {
+                       throw new NotImplementedException ();
+               }
+               [MonoTODO]
+               public bool GetCreateInstanceSupported() {
+                       throw new NotImplementedException ();
+               }
+               [MonoTODO]
+               public override bool GetCreateInstanceSupported(ITypeDescriptorContext context) {
+                       throw new NotImplementedException ();
+               }
+               \r
+\r
+               \r
+\r
+\r
+               \r
+               \r
+               ////Inherited/not needed\r
                //public bool CanConvertFrom(Type t)
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public virtual bool (ITypeDescriptorContext context, Type t)
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
-               //public bool CanConvertTo(Type t)
-               //{
-               //      throw new NotImplementedException ();
-               //}
-               //[MonoTODO]
-               //public override bool CanConvertTo(ITypeDescriptorContext context, Type t)
-               //{
-               //      throw new NotImplementedException ();
-               //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public object ConvertFrom(object o)
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public virtual object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object o)
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public object ConvertFromInvariantString(string s)
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public object ConvertFromInvariantString(ITypeDescriptorContext context, string s)
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public object ConvertFromString(string s)
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public object ConvertFromString(ITypeDescriptorContext context, string s)
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public object ConvertFromString(ITypeDescriptorContext context, CultureInfo culture, string s)
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
-               //public object ConvertTo(object o, Type t)
-               //{
-               //      throw new NotImplementedException ();
-               //}
-               //[MonoTODO]
-               //public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object o, Type t)
-               //{
-               //      throw new NotImplementedException ();
-               //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public string ConvertToInvariantString(object o)
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public string ConvertToInvariantString(ITypeDescriptorContext context, object o)
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public string ConvertToString(object o)
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public string ConvertToString(ITypeDescriptorContext context, object o)
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public object CreateInstance(IDictionary dict)
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
-               //public override object CreateInstance(ITypeDescriptorContext context, IDictionary dict)
-               //{
-               //      throw new NotImplementedException ();
-               //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public virtual bool Equals(object o);
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public static bool Equals(object o1, object o2);
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
-               //public bool GetCreateInstanceSupported()
-               //{
-               //      throw new NotImplementedException ();
-               //}
-               //[MonoTODO]
-               //public override bool GetCreateInstanceSupported(ITypeDescriptorContext context)
-               //{
-               //      throw new NotImplementedException ();
-               //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public virtual int GetHashCode()
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public PropertyDescriptorCollection GetProperties(object o)
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object o)
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public bool GetPropertiesObject()
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public virtual bool GetPropertiesObject(ITypeDescriptorContext context)
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public ICollection GetStandardValues()
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public virtual StandardValuesCollection GetStandardValues(ITypeDescriptorContext context)
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public bool GetStandardValuesExclusive()
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public virtual bool GetStandardValuesExclusive(ITypeDescriptorContext context)
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public bool GetStandardValuesSupported()
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public virtual bool GetStandardValuesSupported(ITypeDescriptorContext context)
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public bool IsValid(object o)
                //{
                //      throw new NotImplementedException ();
                //}
-               //[MonoTODO]
+               ////Inherited/not needed\r
                //public virtual bool IsValid(ITypeDescriptorContext context, object o)
                //{
                //      throw new NotImplementedException ();