This is where I will rant about .... Computer stuff, baby stuff, and whatever else strikes me. In essence, I am into software development - any large class software app - especially anything having to do with AI is of interest. Of course - my family - is of the utmost interest to me as well - so there will be lots about them here too :)

Saturday, January 14, 2006

 

 

 

    5     public interface IObjectView

    6     {

    7         /// <summary>

    8         /// Gets or sets the source object.

    9         /// </summary>

   10         /// <value>The source object.</value>

   11         object SourceObject { get; set; }

   12 

   13         /// <summary>

   14         /// Gets or sets the view descriptor.

   15         /// </summary>

   16         /// <value>The view descriptor.</value>

   17         IViewDescriptor ViewDescriptor { get; set; }

   18 

   19         /// <summary>

   20         /// Gets a bindable object as a IBoundObject <see cref="IBoundObject"/>.

   21         /// </summary>

   22         /// <returns></returns>

   23         IBoundObject GetBindableObject();

   24     }