Skip to content

Commit 803bd15

Browse files
author
Mike Doerfler
committed
Fixing some of the xmldoc problems.
SVN: trunk@950
1 parent 82f3dc8 commit 803bd15

File tree

10 files changed

+159
-26
lines changed

10 files changed

+159
-26
lines changed

src/NHibernate/Collection/PersistentCollection.cs

+8-9
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,24 @@ namespace NHibernate.Collection
1313
/// automatically deleted when unreferenced and automatically become
1414
/// persistent when held by a persistent object. Collections can be
1515
/// passed between different objects (change "roles") and this might
16-
/// cause their elements to move from one database table to another.<br>
17-
/// <br>
16+
/// cause their elements to move from one database table to another.
17+
/// <br /><br />
1818
/// Hibernate "wraps" a java collection in an instance of
1919
/// PersistentCollection. This mechanism is designed to support
2020
/// tracking of changes to the collection's persistent state and
2121
/// lazy instantiation of collection elements. The downside is that
2222
/// only certain abstract collection types are supported and any
23-
/// extra semantics are lost<br>
24-
/// <br>
25-
/// Applications should <em>never</em> use classes in this package
26-
/// directly, unless extending the "framework" here.<br>
27-
/// <br>
28-
/// Changes to <em>structure</em> of the collection are recorded by the
23+
/// extra semantics are lost.
24+
/// <br /><br />
25+
/// Applications should <b>never</b> use classes in this package
26+
/// directly, unless extending the "framework" here.
27+
/// <br /><br />
28+
/// Changes to <b>structure</b> of the collection are recorded by the
2929
/// collection calling back to the session. Changes to mutable
3030
/// elements (ie. composite elements) are discovered by cloning their
3131
/// state when the collection is initialized and comparing at flush
3232
/// time.
3333
///
34-
/// @author Gavin King
3534
/// </summary>
3635
[Serializable]
3736
public abstract class PersistentCollection

src/NHibernate/Collection/Set.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class Set : PersistentCollection, IDictionary {
3131
[NonSerialized] protected IList tempIdentifierList;
3232

3333
/// <summary>
34-
/// Returns a Hashtable where the Key & the Value are both a Copy of the
34+
/// Returns a Hashtable where the Key &amp; the Value are both a Copy of the
3535
/// same object.
3636
/// <see cref="PersistentCollection.Snapshot"/>
3737
/// </summary>

src/NHibernate/Engine/IPreparer.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public interface IPreparer
2222
/// Prepares the IDbCommand for the IDbConnection
2323
///
2424
/// DESIGNTHOUGHT: This is a bit of a false statement now - in order for ADO.NET to Prepare a command the
25-
/// Size & Precision of the Parameter HAVE to be set. The current NHibernate codebase does
25+
/// Size &amp; Precision of the Parameter HAVE to be set. The current NHibernate codebase does
2626
/// not do this. I think to IType we can add a method int[] Size() and int[] Precision and
2727
/// update each Type accordingly. The only bad part about that is that for var length Parameters
2828
/// we will probably be setting the length to the max size and precision - I don't know if that would

src/NHibernate/Mapping/Property.cs

+9
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,25 @@ public IType Type
2626
get { return propertyValue.Type; }
2727
}
2828

29+
/// <summary>
30+
/// Gets the number of columns this property uses in the db.
31+
/// </summary>
2932
public int ColumnSpan
3033
{
3134
get { return propertyValue.ColumnSpan; }
3235
}
3336

37+
/// <summary>
38+
/// Gets an <see cref="ICollection"/> of <see cref="Column"/>s.
39+
/// </summary>
3440
public ICollection ColumnCollection
3541
{
3642
get { return propertyValue.ColumnCollection; }
3743
}
3844

45+
/// <summary>
46+
/// Gets or Sets the name of the Property in the class.
47+
/// </summary>
3948
public string Name
4049
{
4150
get { return name; }

src/NHibernate/Mapping/RootClass.cs

+119
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,84 @@
44

55
namespace NHibernate.Mapping
66
{
7+
/// <summary>
8+
/// Declaration of a System.Type by using the <c>&lt;class&gt;</c> element.
9+
/// </summary>
10+
/// <remarks>
11+
/// <p>The <c>&lt;class&gt;</c> element has the following attributes available:</p>
12+
/// <list type="table">
13+
/// <listheader>
14+
/// <term>Attribute</term>
15+
/// <description>Possible Values</description>
16+
/// </listheader>
17+
/// <item>
18+
/// <term>name</term>
19+
/// <description>The fully qualified TypeName so it can be loaded by Reflection</description>
20+
/// </item>
21+
/// <item>
22+
/// <term>table</term>
23+
/// <description>The name of its database table.</description>
24+
/// </item>
25+
/// <item>
26+
/// <term>discriminator-value</term>
27+
/// <description>
28+
/// (optional - defaults to the FullClassName) A value that distinguishes individual
29+
/// subclasses, used for polymorphic behavior.
30+
/// </description>
31+
/// </item>
32+
/// <item>
33+
/// <term>mutable</term>
34+
/// <description>
35+
/// (optional - defaults to <c>true</c>) Specifies that instances of the class
36+
/// are (not) mutable.
37+
/// </description>
38+
/// </item>
39+
/// <item>
40+
/// <term>schema</term>
41+
/// <description>(optional) Override the schema name specified by the root <c>&lt;hibernate-mapping&gt;</c> element.</description>
42+
/// </item>
43+
/// <item>
44+
/// <term>proxy</term>
45+
/// <description>
46+
/// (optional) Specifies an interface to use for lazy initializing proxies.
47+
/// You may specify the name of the class itself.
48+
/// (TODO: update once Proxies are implemented)
49+
/// </description>
50+
/// </item>
51+
/// <item>
52+
/// <term>dynamic-update</term>
53+
/// <description>
54+
/// (optional - defaults to <c>false</c>) Specifies the <c>UPDATE</c> SQL should
55+
/// be generated at runtime and contain only those columns whose values have changed.
56+
/// </description>
57+
/// </item>
58+
/// <item>
59+
/// <term>dynamic-insert</term>
60+
/// <description>
61+
/// (optional - defaults to <c>false</c>) Specifies the <c>INSERT</c> SQL should
62+
/// be generated at runtime and contain only those columns whose values are not null.
63+
/// </description>
64+
/// </item>
65+
/// <item>
66+
/// <term>polymorphism</term>
67+
/// <description>
68+
/// (optional, defaults to <c>implicit</c>) Determines whether implicit or explicit
69+
/// query polymorphism is used.
70+
/// </description>
71+
/// </item>
72+
/// <item>
73+
/// <term>where</term>
74+
/// <description>
75+
/// (optional) Specify an arbitrary SQL <c>WHERE</c> condition to be used
76+
/// when retrieving objects of this class.
77+
/// </description>
78+
/// </item>
79+
/// <item>
80+
/// <term>persister</term>
81+
/// <description>(optional) Specifies a custom <see cref="Persister.IClassPersister"/>.</description>
82+
/// </item>
83+
/// </list>
84+
/// </remarks>
785
public class RootClass : PersistentClass
886
{
987
private static readonly log4net.ILog log = log4net.LogManager.GetLogger(typeof(RootClass));
@@ -110,12 +188,53 @@ public override bool IsExplicitPolymorphism
110188
set { explicitPolymorphism = value; }
111189
}
112190

191+
/// <summary>
192+
/// Gets or Sets the <see cref="Property"/> to use as the Version Property
193+
/// </summary>
194+
/// <value>The <see cref="Property"/> to use for Versioning.</value>
195+
/// <remarks>
196+
/// <para>
197+
/// The &;tlversion&gt; element is optional and indicates that the table contains versioned data.
198+
/// This is particularly useful if you plan to use long transactions (see below).
199+
/// </para>
200+
/// <para>
201+
/// <list type="table">
202+
/// <listheader>
203+
/// <term>Attribute</term>
204+
/// <description>Possible Values</description>
205+
/// </listheader>
206+
/// <item>
207+
/// <term>column</term>
208+
/// <description>
209+
/// The name of the <c>column</c> holding the version number.
210+
/// Defaults to the Property name.
211+
/// </description>
212+
/// </item>
213+
/// <item>
214+
/// <term>name</term>
215+
/// <description>The name of the Property in the Persistent Class.</description>
216+
/// </item>
217+
/// <item>
218+
/// <term>type</term>
219+
/// <description>
220+
/// The <see cref="Type.IType"/> of the Property. Defaults to an <see cref="Type.Int32Type"/>. It
221+
/// be any <see cref="Type.IVersionType"/>.
222+
/// </description>
223+
/// </item>
224+
/// </list>
225+
/// </para>
226+
/// </remarks>
113227
public override Property Version
114228
{
115229
get { return version; }
116230
set { version = value; }
117231
}
118232

233+
/// <summary>
234+
/// Gets a value indicating if the <see cref="PersistentClass" /> is versioned
235+
/// by NHibernate.
236+
/// </summary>
237+
/// <value><c>true</c> if there is a version property.</value>
119238
public override bool IsVersioned
120239
{
121240
get { return version != null; }

src/NHibernate/Property/FieldAccessor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ internal static FieldInfo GetField(System.Type clazz, string fieldName)
6666
/// <param name="propertyName">The name of the Property.</param>
6767
/// <returns>The name of the Field.</returns>
6868
/// <remarks>
69-
/// This uses the convention that a Property named <c>Id</c> will have a field </c>id</c>
69+
/// This uses the convention that a Property named <c>Id</c> will have a field <c>id</c>
7070
/// </remarks>
7171
private string GetFieldName(string propertyName)
7272
{

src/NHibernate/Property/PropertyAccessorFactory.cs

+10-6
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ private PropertyAccessorFactory()
3030
/// <param name="type"></param>
3131
/// <returns></returns>
3232
/// <remarks>
33-
/// <p>
33+
/// <para>
3434
/// The built in ways of accessing the values of Properties in your domain class are:
35-
/// </p>
35+
/// </para>
3636
/// <list type="table">
3737
/// <listheader>
38-
/// <term>access method</term>
38+
/// <term>Access Method</term>
3939
/// <description>How NHibernate accesses the Mapped Class.</description>
4040
/// </listheader>
4141
/// <item>
@@ -51,7 +51,7 @@ private PropertyAccessorFactory()
5151
/// The <c>name</c> attribute is the name of the field. If you have any Properties
5252
/// in the Mapped Class those will be bypassed and NHibernate will go straight to the
5353
/// field. This is a good option if your setters have business rules attached to them
54-
/// or if you don't want to expose a field through a Getter & Setter.
54+
/// or if you don't want to expose a field through a Getter &amp; Setter.
5555
/// </description>
5656
/// </item>
5757
/// <item>
@@ -72,11 +72,15 @@ private PropertyAccessorFactory()
7272
/// </description>
7373
/// </item>
7474
/// </list>
75-
/// <p>
75+
/// <para>
7676
/// In order for the <c>nosetter</c> to know the name of the field to access NHibernate needs to know
7777
/// what the naming strategy is. The following naming strategies are built into NHibernate:
78-
/// </p>
78+
/// </para>
7979
/// <list type="table">
80+
/// <listheader>
81+
/// <term>Naming Strategy</term>
82+
/// <description>How NHibernate converts the value of the <c>name</c> attribute to a field name.</description>
83+
/// </listheader>
8084
/// <item>
8185
/// <term>camelcase</term>
8286
/// <description>

src/NHibernate/SqlCommand/SqlBaseBuilder.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ protected SqlString ToWhereString(string tableAlias, string[] columnNames, objec
4444
/// </summary>
4545
/// <param name="columnNames">The names of the Columns to Add to the WhereFragment</param>
4646
/// <param name="columnValues">The Values for the Columns in the WhereFragment</param>
47-
/// <param name="op">The operator to use between the names & values. For example " = " or "!="</param>
47+
/// <param name="op">The operator to use between the names &amp; values. For example " = " or "!="</param>
4848
/// <returns>A SqlString that contains the WhereFragment</returns>
4949
protected SqlString ToWhereString(string[] columnNames, object[] columnValues, string op) {
5050
return ToWhereString(null, columnNames, columnValues, op);
@@ -56,7 +56,7 @@ protected SqlString ToWhereString(string[] columnNames, object[] columnValues, s
5656
/// <param name="tableAlias">The Alias for the Table.</param>
5757
/// <param name="columnNames">The names of the Columns to Add to the WhereFragment</param>
5858
/// <param name="columnValues">The Values for the Columns in the WhereFragment</param>
59-
/// <param name="op">The operator to use between the names & values. For example " = " or "!="</param>
59+
/// <param name="op">The operator to use between the names &amp; values. For example " = " or "!="</param>
6060
/// <returns>A SqlString that contains the WhereFragment</returns>
6161
protected SqlString ToWhereString(string tableAlias, string[] columnNames, object[] columnValues, string op) {
6262
SqlStringBuilder sqlBuilder = new SqlStringBuilder((columnNames.Length * 2) + 5);

src/NHibernate/Type/DateTimeType.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace NHibernate.Type
77
{
88

99
/// <summary>
10-
/// Maps a System.DateTime Property to a column that stores date & time down to
10+
/// Maps a System.DateTime Property to a column that stores date &amp; time down to
1111
/// the accuracy of a second.
1212
/// </summary>
1313
/// <remarks>
@@ -91,6 +91,7 @@ public override object DeepCopyNotNull(object value)
9191
return (DateTime)value;
9292
}
9393

94+
9495
public override bool HasNiceEquals
9596
{
9697
get { return true; }

src/NHibernate/Util/IdentityMap.cs

+6-5
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,24 @@ namespace NHibernate.Util
77
{
88

99
/// <summary>
10-
/// An <c>IDictionary</c> where keys are compared by object identity, rather than <c>equals</c>.
10+
/// An <see cref="IDictionary" /> where keys are compared by object identity, rather than <c>equals</c>.
1111
///
1212
/// All external users of this class need to have no knowledge of the IdentityKey - it is all
1313
/// hidden by this class.
1414
/// </summary>
1515
/// <remarks>
16+
/// <para>
1617
/// Do NOT use a System.Value type as the key for this Hashtable - only classes. See
17-
/// the google thread
18-
/// http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&oe=UTF-8&threadm=bds2rm%24ruc%241%40charly.heeg.de&rnum=1&prev=/groups%3Fhl%3Den%26lr%3D%26ie%3DUTF-8%26oe%3DUTF-8%26q%3DSystem.Runtime.CompilerServices.RuntimeHelpers.GetHashCode%26sa%3DN%26tab%3Dwg
18+
/// the <a href="http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&oe=UTF-8&threadm=bds2rm%24ruc%241%40charly.heeg.de&rnum=1&prev=/groups%3Fhl%3Den%26lr%3D%26ie%3DUTF-8%26oe%3DUTF-8%26q%3DSystem.Runtime.CompilerServices.RuntimeHelpers.GetHashCode%26sa%3DN%26tab%3Dwg">google thread</a>
1919
/// about why using System.Value is a bad thing.
20-
/// <p>
20+
/// </para>
21+
/// <para>
2122
/// If I understand it correctly, the first call to get an object defined by a DateTime("2003-01-01")
2223
/// would box the DateTime and return the identity key for the box. If you were to get that Key and
2324
/// unbox it into a DateTime struct, then the next time you passed it in as the Key the IdentityMap
2425
/// would box it again (into a different box) and it would have a different IdentityKey - so you would
2526
/// not get the same value for the same DateTime value.
26-
/// </p>
27+
/// </para>
2728
/// </remarks>
2829
[Serializable]
2930
public sealed class IdentityMap : IDictionary

0 commit comments

Comments
 (0)