Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Impl
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13030
Modified Files:
ScheduledEntityAction.cs
Log Message:
fixing xml comments and letting ReSharper do reformatting
Index: ScheduledEntityAction.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Impl/ScheduledEntityAction.cs,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** ScheduledEntityAction.cs 9 Dec 2004 22:08:54 -0000 1.7
--- ScheduledEntityAction.cs 31 Dec 2004 19:53:44 -0000 1.8
***************
*** 1,8 ****
- using System;
using NHibernate.Engine;
using NHibernate.Persister;
- using NHibernate.Cache;
! namespace NHibernate.Impl
{
/// <summary>
--- 1,6 ----
using NHibernate.Engine;
using NHibernate.Persister;
! namespace NHibernate.Impl
{
/// <summary>
***************
*** 10,16 ****
/// flush.
/// </summary>
! internal abstract class ScheduledEntityAction : IExecutable
{
-
private readonly ISessionImplementor _session;
private readonly object _id;
--- 8,13 ----
/// flush.
/// </summary>
! internal abstract class ScheduledEntityAction : IExecutable
{
private readonly ISessionImplementor _session;
private readonly object _id;
***************
*** 25,29 ****
/// <param name="instance">The actual object instance.</param>
/// <param name="persister">The <see cref="IClassPersister"/> that is responsible for the persisting the object.</param>
! protected ScheduledEntityAction(ISessionImplementor session, object id, object instance, IClassPersister persister)
{
_session = session;
--- 22,26 ----
/// <param name="instance">The actual object instance.</param>
/// <param name="persister">The <see cref="IClassPersister"/> that is responsible for the persisting the object.</param>
! protected ScheduledEntityAction( ISessionImplementor session, object id, object instance, IClassPersister persister )
{
_session = session;
***************
*** 37,43 ****
/// Gets the <see cref="ISessionImplementor"/> the action is executing in.
/// </summary>
! protected ISessionImplementor Session
{
! get { return _session;}
}
--- 34,40 ----
/// Gets the <see cref="ISessionImplementor"/> the action is executing in.
/// </summary>
! protected ISessionImplementor Session
{
! get { return _session; }
}
***************
*** 45,49 ****
/// Gets the identifier of the object.
/// </summary>
! protected object Id
{
get { return _id; }
--- 42,46 ----
/// Gets the identifier of the object.
/// </summary>
! protected object Id
{
get { return _id; }
***************
*** 53,59 ****
/// Gets the <see cref="IClassPersister"/> that is responsible for persisting the object.
/// </summary>
! protected IClassPersister Persister
{
! get { return _persister;}
}
--- 50,56 ----
/// Gets the <see cref="IClassPersister"/> that is responsible for persisting the object.
/// </summary>
! protected IClassPersister Persister
{
! get { return _persister; }
}
***************
*** 61,72 ****
/// Gets the object that is having the scheduled action performed against it.
/// </summary>
! protected object Instance
{
get { return _instance; }
}
!
#region SessionImpl.IExecutable Members
-
/// <summary>
/// Called when the Transaction this action occurred in has completed.
--- 58,68 ----
/// Gets the object that is having the scheduled action performed against it.
/// </summary>
! protected object Instance
{
get { return _instance; }
}
!
#region SessionImpl.IExecutable Members
/// <summary>
/// Called when the Transaction this action occurred in has completed.
***************
*** 79,83 ****
public abstract void Execute();
! public object[] PropertySpaces
{
get { return _persister.PropertySpaces; }
--- 75,80 ----
public abstract void Execute();
! /// <summary></summary>
! public object[ ] PropertySpaces
{
get { return _persister.PropertySpaces; }
***************
*** 85,89 ****
#endregion
-
}
! }
--- 82,85 ----
#endregion
}
! }
\ No newline at end of file
|