Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Objects/Factory
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18183/Spring/Spring.Core/Objects/Factory
Modified Files:
IGenericObjectFactory.cs IObjectFactory.cs
IObjectFactoryAware.cs IObjectNameAware.cs
Log Message:
Added centralised Type resolution mechanism, runtime type converter, Xml Config handler, multiple documentation updates.
Index: IGenericObjectFactory.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Objects/Factory/IGenericObjectFactory.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** IGenericObjectFactory.cs 23 Jul 2004 10:16:02 -0000 1.1
--- IGenericObjectFactory.cs 26 Jul 2004 07:47:55 -0000 1.2
***************
*** 29,33 ****
/// are normally meant to be defined as instances by the user in a IObjectFactory,
/// while implementations of this class are normally meant to be fed as a
! /// property to other beans. As such, the GetObject method has different
/// exception handling behavior.
/// </remarks>
--- 29,33 ----
/// are normally meant to be defined as instances by the user in a IObjectFactory,
/// while implementations of this class are normally meant to be fed as a
! /// property to other objects. As such, the GetObject method has different
/// exception handling behavior.
/// </remarks>
Index: IObjectFactory.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Objects/Factory/IObjectFactory.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** IObjectFactory.cs 12 Jul 2004 07:50:56 -0000 1.2
--- IObjectFactory.cs 26 Jul 2004 07:47:55 -0000 1.3
***************
*** 92,96 ****
/// <item>
/// <description>
! /// PostProcessBeforeInitialization methods of ObjectPostProcessors.
/// </description>
/// </item>
--- 92,99 ----
/// <item>
/// <description>
! /// The
! /// <see cref="Spring.Objects.Factory.Config.IObjectPostProcessor.PostProcessBeforeInitialization"/>
! /// method of
! /// <see cref="Spring.Objects.Factory.Config.IObjectPostProcessor"/>s.
/// </description>
/// </item>
***************
*** 108,116 ****
/// <item>
/// <description>
! /// PostProcessAfterInitialization methods of ObjectPostProcessors.
/// </description>
/// </item>
/// </list>
/// </p>
/// <p>
/// On shutdown of an object factory, the following lifecycle methods apply:
--- 111,123 ----
/// <item>
/// <description>
! /// The
! /// <see cref="Spring.Objects.Factory.Config.IObjectPostProcessor.PostProcessAfterInitialization"/>
! /// method of
! /// <see cref="Spring.Objects.Factory.Config.IObjectPostProcessor"/>s.
/// </description>
/// </item>
/// </list>
/// </p>
+ /// <p/>
/// <p>
/// On shutdown of an object factory, the following lifecycle methods apply:
Index: IObjectNameAware.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Objects/Factory/IObjectNameAware.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** IObjectNameAware.cs 12 Jul 2004 07:50:56 -0000 1.2
--- IObjectNameAware.cs 26 Jul 2004 07:47:55 -0000 1.3
***************
*** 54,58 ****
/// <p>
/// Invoked after population of normal object properties but before an init
! /// callback like <see cref="Spring.Objects.Factory.IInitializingObject"/>&s
/// <see cref="Spring.Objects.Factory.IInitializingObject.AfterPropertiesSet"/>
/// method or a custom init-method.
--- 54,58 ----
/// <p>
/// Invoked after population of normal object properties but before an init
! /// callback like <see cref="Spring.Objects.Factory.IInitializingObject"/>'s
/// <see cref="Spring.Objects.Factory.IInitializingObject.AfterPropertiesSet"/>
/// method or a custom init-method.
Index: IObjectFactoryAware.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Objects/Factory/IObjectFactoryAware.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** IObjectFactoryAware.cs 12 Jul 2004 07:50:56 -0000 1.2
--- IObjectFactoryAware.cs 26 Jul 2004 07:47:55 -0000 1.3
***************
*** 58,62 ****
/// <p>
/// Invoked after population of normal object properties but before an init
! /// callback like <see cref="Spring.Objects.Factory.IInitializingObject"/>&s
/// <see cref="Spring.Objects.Factory.IInitializingObject.AfterPropertiesSet"/>
/// method or a custom init-method.
--- 58,62 ----
/// <p>
/// Invoked after population of normal object properties but before an init
! /// callback like <see cref="Spring.Objects.Factory.IInitializingObject"/>'s
/// <see cref="Spring.Objects.Factory.IInitializingObject.AfterPropertiesSet"/>
/// method or a custom init-method.
|