From: Kevin W. <kev...@us...> - 2005-01-06 14:20:09
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Mapping In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13036 Modified Files: Column.cs PersistentClass.cs UniqueKey.cs Log Message: fix xml documentation comments Index: PersistentClass.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Mapping/PersistentClass.cs,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** PersistentClass.cs 3 Jan 2005 03:46:48 -0000 1.17 --- PersistentClass.cs 6 Jan 2005 14:19:59 -0000 1.18 *************** *** 9,13 **** /// Base class for the <see cref="RootClass" /> mapped by <c><class></c> and a /// <see cref="Subclass"/> that is mapped by <c><subclass></c> or ! /// <c><joined-subclass></c>. /// </summary> public abstract class PersistentClass --- 9,13 ---- /// Base class for the <see cref="RootClass" /> mapped by <c><class></c> and a /// <see cref="Subclass"/> that is mapped by <c><subclass></c> or ! /// <c><joined-subclass></c>. /// </summary> public abstract class PersistentClass Index: UniqueKey.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Mapping/UniqueKey.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** UniqueKey.cs 2 Jan 2005 22:03:39 -0000 1.6 --- UniqueKey.cs 6 Jan 2005 14:19:59 -0000 1.7 *************** *** 40,43 **** --- 40,44 ---- /// </summary> /// <param name="d">The <see cref="Dialect.Dialect"/> to use for SQL rules.</param> + /// <param name="constraintName"></param> /// <returns> /// A string that contains the SQL to create the Unique Key Constraint. Index: Column.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Mapping/Column.cs,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** Column.cs 2 Jan 2005 22:03:39 -0000 1.15 --- Column.cs 6 Jan 2005 14:19:59 -0000 1.16 *************** *** 288,292 **** /// Returns the hash code for this instance. /// </summary> ! /// <value>The value of <see cref="Name.GetHashCode()">Name.GetHashCode()</see>.</value> public override int GetHashCode() { --- 288,292 ---- /// Returns the hash code for this instance. /// </summary> ! /// <value>The value of Name.GetHashCode().</value> public override int GetHashCode() { |