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 PropertyDescriptor.cs,1.3,1.4
Date: Tue, 10 Jun 2003 01:00:29 -0400

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

Modified Files:
        PropertyDescriptor.cs 
Log Message:
Stub out more of PropertyDescriptor


Index: PropertyDescriptor.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System/ComponentModel/PropertyDescriptor.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** PropertyDescriptor.cs       29 May 2003 05:38:17 -0000      1.3
--- PropertyDescriptor.cs       10 Jun 2003 05:00:27 -0000      1.4
***************
*** 40,43 ****
--- 40,157 ----
        protected PropertyDescriptor(MemberDescriptor desc, Attribute[] attrs) 
                                : base(desc) {}
+       [TODO]
+       public virtual void AddValueChanged(Object component, EventHandler 
handler)
+       {
+                throw new NotImplementedException("AddValueChanged");
+       }
+ 
+       public abstract bool CanResetValue(Object component);
+ 
+       [TODO]
+       protected Object CreateInstance(Type type)
+       {
+                throw new NotImplementedException("CreateInstance");
+       }
+ 
+       [TODO]
+       public override bool Equals(Object obj)
+       {
+                throw new NotImplementedException("Equals");
+       }
+ 
+       [TODO]
+       public PropertyDescriptorCollection GetChildProperties()
+       {
+                throw new NotImplementedException("GetChildProperties");
+       }
+ 
+       [TODO]
+       public PropertyDescriptorCollection GetChildProperties(Attribute[] 
filter)
+       {
+                throw new NotImplementedException("GetChildProperties");
+       }
+ 
+       [TODO]
+       public PropertyDescriptorCollection GetChildProperties(Object instance)
+       {
+                throw new NotImplementedException("GetChildProperties");
+       }
+ 
+       [TODO]
+       public virtual PropertyDescriptorCollection GetChildProperties(Object 
instance, Attribute[] filter)
+       {
+                throw new NotImplementedException("GetChildProperties");
+       }
+ 
+       [TODO]
+       public virtual Object GetEditor(Type editorBaseType)
+       {
+                throw new NotImplementedException("GetEditor");
+       }
+ 
+       [TODO]
+       public override int GetHashCode()
+       {
+                throw new NotImplementedException("GetHashCode");
+       }
+ 
+       [TODO]
+       protected Type GetTypeFromName(String typeName)
+       {
+                throw new NotImplementedException("GetTypeFromName");
+       }
+ 
+       public abstract Object GetValue(Object component);
+ 
+       [TODO]
+       protected virtual void OnValueChanged(Object component, EventArgs e)
+       {
+                throw new NotImplementedException("OnValueChanged");
+       }
+ 
+       [TODO]
+       public virtual void RemoveValueChanged(Object component, EventHandler 
handler)
+       {
+                throw new NotImplementedException("RemoveValueChanged");
+       }
+ 
+       public abstract void ResetValue(Object component);
+ 
+       public abstract void SetValue(Object component, Object value);
+ 
+       public abstract bool ShouldSerializeValue(Object component);
+ 
+       public abstract Type ComponentType { get; }
+ 
+       [TODO]
+       public virtual TypeConverter Converter 
+       {
+               get
+               {
+                       throw new NotImplementedException("Converter");
+               }
+       }
+ 
+       [TODO]
+       public virtual bool IsLocalizable 
+       {
+               get
+               {
+                       throw new NotImplementedException("IsLocalizable");
+               }
+       }
+ 
+       public abstract bool IsReadOnly { get; } 
+ 
+       public abstract Type PropertyType { get; } 
+ 
+       [TODO]
+       public DesignerSerializationVisibility SerializationVisibility 
+       {
+               get
+               {
+                       throw new 
NotImplementedException("SerializationVisibility");
+               }
+       }
  
  }; // class PropertyDescriptor





reply via email to

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