From: Kevin W. <kev...@us...> - 2004-12-31 19:52:52
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Impl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12812 Modified Files: ScheduledCollectionAction.cs Log Message: fixing xml comments and letting ReSharper do reformatting Index: ScheduledCollectionAction.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Impl/ScheduledCollectionAction.cs,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** ScheduledCollectionAction.cs 9 Dec 2004 22:08:54 -0000 1.8 --- ScheduledCollectionAction.cs 31 Dec 2004 19:52:43 -0000 1.9 *************** *** 1,8 **** - using System; - using NHibernate.Engine; using NHibernate.Collection; ! using NHibernate.Cache; ! namespace NHibernate.Impl { /// <summary> --- 1,6 ---- using NHibernate.Collection; ! using NHibernate.Engine; ! namespace NHibernate.Impl { /// <summary> *************** *** 10,14 **** /// flush. /// </summary> ! internal abstract class ScheduledCollectionAction : IExecutable { private CollectionPersister _persister; --- 8,12 ---- /// flush. /// </summary> ! internal abstract class ScheduledCollectionAction : IExecutable { private CollectionPersister _persister; *************** *** 22,26 **** /// <param name="id">The identifier of the Collection owner.</param> /// <param name="session">The <see cref="ISessionImplementor"/> that the Action is occuring in.</param> ! public ScheduledCollectionAction(CollectionPersister persister, object id, ISessionImplementor session) { _persister = persister; --- 20,24 ---- /// <param name="id">The identifier of the Collection owner.</param> /// <param name="session">The <see cref="ISessionImplementor"/> that the Action is occuring in.</param> ! public ScheduledCollectionAction( CollectionPersister persister, object id, ISessionImplementor session ) { _persister = persister; *************** *** 32,38 **** /// Gets the <see cref="CollectionPersister"/> that is responsible for persisting the Collection. /// </summary> ! public CollectionPersister Persister { ! get { return _persister;} } --- 30,36 ---- /// Gets the <see cref="CollectionPersister"/> that is responsible for persisting the Collection. /// </summary> ! public CollectionPersister Persister { ! get { return _persister; } } *************** *** 40,46 **** /// Gets the identifier of the Collection owner. /// </summary> ! public object Id { ! get { return _id;} } --- 38,44 ---- /// Gets the identifier of the Collection owner. /// </summary> ! public object Id { ! get { return _id; } } *************** *** 48,59 **** /// Gets the <see cref="ISessionImplementor"/> the action is executing in. /// </summary> ! public ISessionImplementor Session { ! get { return _session;} } #region SessionImpl.IExecutable Members ! public void AfterTransactionCompletion() { _persister.ReleaseSoftlock( _id ); --- 46,58 ---- /// Gets the <see cref="ISessionImplementor"/> the action is executing in. /// </summary> ! public ISessionImplementor Session { ! get { return _session; } } #region SessionImpl.IExecutable Members ! /// <summary></summary> ! public void AfterTransactionCompletion() { _persister.ReleaseSoftlock( _id ); *************** *** 61,72 **** public abstract void Execute(); ! ! public object[] PropertySpaces { ! get { return new string[] { _persister.QualifiedTableName }; } //TODO: cache the array on the persister } - - #endregion } ! } --- 60,71 ---- public abstract void Execute(); ! ! /// <summary></summary> ! public object[ ] PropertySpaces { ! get { return new string[ ] {_persister.QualifiedTableName}; } //TODO: cache the array on the persister } + #endregion } ! } \ No newline at end of file |