dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/System/ComponentModel PropertyDescri


From: Gopal.V <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/System/ComponentModel PropertyDescriptorCollection.cs,1.1,1.2
Date: Mon, 26 May 2003 14:16:25 -0400

Update of /cvsroot/dotgnu-pnet/pnetlib/System/ComponentModel
In directory subversions:/tmp/cvs-serv9622/System/ComponentModel

Modified Files:
        PropertyDescriptorCollection.cs 
Log Message:
Stub out more non-ECMA methods for ComponentModel and Xml classes


Index: PropertyDescriptorCollection.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/ComponentModel/PropertyDescriptorCollection.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** PropertyDescriptorCollection.cs     3 Dec 2002 00:18:55 -0000       1.1
--- PropertyDescriptorCollection.cs     26 May 2003 18:16:23 -0000      1.2
***************
*** 30,40 ****
  [TODO]
  [ComVisible(true)]
! public class PropertyDescriptorCollection
  {
        // TODO
  
!       public PropertyDescriptorCollection() {}
  
!       public void Sort(String[] names) {}
  
  }; // class PropertyDescriptorCollection
--- 30,311 ----
  [TODO]
  [ComVisible(true)]
! public class PropertyDescriptorCollection : IDictionary, IEnumerable, 
!                                                                               
        ICollection, IList
  {
        // TODO
+       public static readonly PropertyDescriptorCollection Empty =
+                                                               new 
PropertyDescriptorCollection(null);
  
!       [TODO]
!       public PropertyDescriptorCollection() 
!       {
!       }
!       
!       [TODO]
!       public PropertyDescriptorCollection(PropertyDescriptor [] properties) 
!       {
!       }
  
!       [TODO]
!       public int Add(PropertyDescriptor value)
!       {
!                throw new NotImplementedException("Add");
!       }
! 
!       [TODO]
!       public void Clear()
!       {
!                throw new NotImplementedException("Clear");
!       }
! 
!       [TODO]
!       public bool Contains(PropertyDescriptor value)
!       {
!                throw new NotImplementedException("Contains");
!       }
! 
!       [TODO]
!       public void CopyTo(Array array, int index)
!       {
!                throw new NotImplementedException("CopyTo");
!       }
! 
!       [TODO]
!       public virtual PropertyDescriptor Find(String name, bool ignoreCase)
!       {
!                throw new NotImplementedException("Find");
!       }
! 
!       [TODO]
!       public virtual IEnumerator GetEnumerator()
!       {
!                throw new NotImplementedException("GetEnumerator");
!       }
! 
!       [TODO]
!       public int IndexOf(PropertyDescriptor value)
!       {
!                throw new NotImplementedException("IndexOf");
!       }
! 
!       [TODO]
!       public void Insert(int index, PropertyDescriptor value)
!       {
!                throw new NotImplementedException("Insert");
!       }
! 
!       [TODO]
!       protected void InternalSort(IComparer ic)
!       {
!                throw new NotImplementedException("InternalSort");
!       }
! 
!       [TODO]
!       protected void InternalSort(String[] order)
!       {
!                throw new NotImplementedException("InternalSort");
!       }
! 
!       [TODO]
!       public void Remove(PropertyDescriptor value)
!       {
!                throw new NotImplementedException("Remove");
!       }
! 
!       [TODO]
!       public void RemoveAt(int index)
!       {
!                throw new NotImplementedException("RemoveAt");
!       }
! 
!       [TODO]
!       public virtual PropertyDescriptorCollection Sort()
!       {
!                throw new NotImplementedException("Sort");
!       }
! 
!       [TODO]
!       public virtual PropertyDescriptorCollection Sort(IComparer ic)
!       {
!                throw new NotImplementedException("Sort");
!       }
! 
!       [TODO]
!       public virtual PropertyDescriptorCollection Sort(String []names)
!       {
!                throw new NotImplementedException("Sort");
!       }
! 
!       [TODO]
!       public int Count 
!       {
!               get
!               {
!                       throw new NotImplementedException("Count");
!               }
!       }
! 
!       [TODO]
!       public bool IsReadOnly 
!       {
!               get
!               {
!                       throw new NotImplementedException("IsReadOnly");
!               }
!       }
! 
!       [TODO]
!       public bool IsSynchronized 
!       {
!               get
!               {
!                       throw new NotImplementedException("IsSynchronized");
!               }
!       }
! 
!       [TODO]
!       public virtual PropertyDescriptor this[String name] 
!       {
!               get
!               {
!                       throw new NotImplementedException("Item");
!               }
!       }
! 
!       [TODO]
!       public virtual PropertyDescriptor this[int index] 
!       {
!               get
!               {
!                       throw new NotImplementedException("Item");
!               }
!       }
! 
!       // NOTE: only the missing interface cases have been implemented , others
!       // are automatically obtained from the various virtual methods above.
!       // Implementor might find it necessary to split them out into seperate
!       // explicit interface methods.
! 
!       // IList implements
! 
!       [TODO]
!       int IList.Add(Object value)
!       {
!               throw new NotImplementedException();
!       }
! 
!       [TODO]
!       bool IList.Contains(Object value)
!       {
!               throw new NotImplementedException();
!       }
! 
!       [TODO]
!       int IList.IndexOf(Object value)
!       {
!               throw new NotImplementedException();
!       }
! 
!       [TODO]
!       void IList.Insert(int index, Object value)
!       {
!               throw new NotImplementedException();
!       }
! 
!       [TODO]
!       void IList.Remove(Object value)
!       {
!               throw new NotImplementedException();
!       }
! 
!       [TODO]
!       bool IList.IsFixedSize 
!       {
!               get
!               {
!                       throw new NotImplementedException();
!               }
!       }
!       
!       [TODO]
!       Object IList.this[int index] 
!       {
!               get
!               {
!                       throw new NotImplementedException();
!               }
!               set
!               {
!                       throw new NotImplementedException();
!               }
!       }
! 
!       // ICollection implements
!       Object ICollection.SyncRoot 
!       { 
!               get
!               {
!                       throw new NotImplementedException();
!               }
!       }
! 
!       // IDictionary implements
! 
!       void IDictionary.Add(Object key, Object value)
!       {
!               throw new NotImplementedException();
!       }
! 
!       bool IDictionary.Contains(Object key)
!       {
!               throw new NotImplementedException();
!       }
! 
!       IDictionaryEnumerator IDictionary.GetEnumerator()
!       {
!               throw new NotImplementedException();
!       }
! 
!       void IDictionary.Remove(Object key)
!       {
!               throw new NotImplementedException();
!       }
! 
!       bool IDictionary.IsFixedSize
!       {
!               get
!               {
!                       throw new NotImplementedException();
!               }
!       }
! 
!       Object IDictionary.this[Object key]
!       {
!               get
!               {
!                       throw new NotImplementedException();
!               }
!               set
!               {
!                       throw new NotImplementedException();
!               }
!       }
! 
!       ICollection IDictionary.Keys
!       {
!               get
!               {
!                       throw new NotImplementedException();
!               }
!       }
!       
!       ICollection IDictionary.Values
!       {
!               get
!               {
!                       throw new NotImplementedException();
!               }
!       }
!       
  
  }; // class PropertyDescriptorCollection





reply via email to

[Prev in Thread] Current Thread [Next in Thread]