Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aop/Target
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv10544
Modified Files:
SingletonTargetSource.cs
Log Message:
misc updates, doc cleanup, code regions.
Added getter for DbProvider in LocalSessionFactoryObject
Index: SingletonTargetSource.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aop/Target/SingletonTargetSource.cs,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** SingletonTargetSource.cs 16 Mar 2007 04:01:26 -0000 1.7
--- SingletonTargetSource.cs 21 Mar 2008 14:11:57 -0000 1.8
***************
*** 64,68 ****
}
! /// <summary>
/// The <see cref="System.Type"/> of the target object.
/// </summary>
--- 64,70 ----
}
! #region ITarget Source impl
!
! /// <summary>
/// The <see cref="System.Type"/> of the target object.
/// </summary>
***************
*** 106,112 ****
public void ReleaseTarget(object target)
{
}
! /// <summary>
/// Returns a stringified representation of this target source.
/// </summary>
--- 108,117 ----
public void ReleaseTarget(object target)
{
+
}
! #endregion
!
! /// <summary>
/// Returns a stringified representation of this target source.
/// </summary>
***************
*** 119,146 ****
}
! /// <summary>
! /// Determines whether the specified <see cref="System.Object"/>
! /// is equal to the current <see cref="System.Object"/>.
! /// </summary>
! /// <param name="other">The target source to compare with.</param>
! /// <returns>
! /// <see langword="true"/> if this instance is equal to the
! /// specified <see cref="System.Object"/>.
! /// </returns>
! public override bool Equals(object other)
! {
! if (this == other)
! {
! return true;
! }
! SingletonTargetSource b = other as SingletonTargetSource;
! if (b == null)
! {
! return false;
! }
! return target.Equals(b.target);
! }
! /// <summary>
/// Serves as a hash function for a particular type, suitable for use
/// in hashing algorithms and data structures like a hash table.
--- 124,151 ----
}
! /// <summary>
! /// Determines whether the specified <see cref="System.Object"/>
! /// is equal to the current <see cref="System.Object"/>.
! /// </summary>
! /// <param name="other">The target source to compare with.</param>
! /// <returns>
! /// <see langword="true"/> if this instance is equal to the
! /// specified <see cref="System.Object"/>.
! /// </returns>
! public override bool Equals(object other)
! {
! if (this == other)
! {
! return true;
! }
! SingletonTargetSource b = other as SingletonTargetSource;
! if (b == null)
! {
! return false;
! }
! return target.Equals(b.target);
! }
! /// <summary>
/// Serves as a hash function for a particular type, suitable for use
/// in hashing algorithms and data structures like a hash table.
|