From: Kevin W. <kev...@us...> - 2005-01-01 03:37:45
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Type In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2110 Modified Files: EntityType.cs PersistentCollectionType.cs TypeType.cs Log Message: fix xml documentation and allow ReSharper to reformat Index: PersistentCollectionType.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Type/PersistentCollectionType.cs,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** PersistentCollectionType.cs 31 Dec 2004 23:54:56 -0000 1.17 --- PersistentCollectionType.cs 1 Jan 2005 03:37:34 -0000 1.18 *************** *** 268,276 **** public abstract PersistentCollection Wrap( ISessionImplementor session, object collection ); ! /** ! * Note: return true because this type is castable to IAssociationType. Not because ! * all collections are associations. ! */ ! /// <summary></summary> public override bool IsAssociationType --- 268,273 ---- public abstract PersistentCollection Wrap( ISessionImplementor session, object collection ); ! // Note: return true because this type is castable to IAssociationType. Not because ! // all collections are associations. /// <summary></summary> public override bool IsAssociationType Index: TypeType.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Type/TypeType.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TypeType.cs 31 Dec 2004 23:56:09 -0000 1.5 --- TypeType.cs 1 Jan 2005 03:37:34 -0000 1.6 *************** *** 84,88 **** /// <param name="index">The index of the <see cref="IDbDataParameter"/> to start writing the value to.</param> /// <remarks> ! /// This uses the <see cref="NHibernate.String.Set(IDbCommand, Object,Int32)"/> method of the /// <see cref="NHibernate.String"/> object to do the work. /// </remarks> --- 84,88 ---- /// <param name="index">The index of the <see cref="IDbDataParameter"/> to start writing the value to.</param> /// <remarks> ! /// This uses the <see cref="NullableType.Set(IDbCommand, Object,Int32)"/> method of the /// <see cref="NHibernate.String"/> object to do the work. /// </remarks> Index: EntityType.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Type/EntityType.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** EntityType.cs 31 Dec 2004 23:52:52 -0000 1.7 --- EntityType.cs 1 Jan 2005 03:37:34 -0000 1.8 *************** *** 60,68 **** } ! /** ! * This returns the wrong class for an entity with a proxy. Theoretically ! * it should return the proxy class, but it doesn't. ! */ ! /// <summary></summary> public override sealed System.Type ReturnedClass --- 60,65 ---- } ! // This returns the wrong class for an entity with a proxy. Theoretically ! // it should return the proxy class, but it doesn't. /// <summary></summary> public override sealed System.Type ReturnedClass |