From: Kevin W. <kev...@us...> - 2004-12-31 22:32:11
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/SqlTypes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10334 Modified Files: AnsiStringFixedLengthSqlType.cs AnsiStringSqlType.cs BinaryBlobSqlType.cs BinarySqlType.cs BooleanSqlType.cs Log Message: fixing xml comments and letting ReSharper do reformatting Index: AnsiStringFixedLengthSqlType.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/SqlTypes/AnsiStringFixedLengthSqlType.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** AnsiStringFixedLengthSqlType.cs 11 Dec 2004 16:28:28 -0000 1.4 --- AnsiStringFixedLengthSqlType.cs 31 Dec 2004 22:31:48 -0000 1.5 *************** *** 2,6 **** using System.Data; ! namespace NHibernate.SqlTypes { /// <summary> --- 2,6 ---- using System.Data; ! namespace NHibernate.SqlTypes { /// <summary> *************** *** 14,23 **** /// </remarks> [Serializable] ! public class AnsiStringFixedLengthSqlType : SqlType { /// <summary> /// Initializes a new instance of the <see cref="AnsiStringFixedLengthSqlType"/> class. /// </summary> ! public AnsiStringFixedLengthSqlType() : base(DbType.AnsiStringFixedLength) { } --- 14,23 ---- /// </remarks> [Serializable] ! public class AnsiStringFixedLengthSqlType : SqlType { /// <summary> /// Initializes a new instance of the <see cref="AnsiStringFixedLengthSqlType"/> class. /// </summary> ! public AnsiStringFixedLengthSqlType() : base( DbType.AnsiStringFixedLength ) { } *************** *** 27,34 **** /// </summary> /// <param name="length">The length of the string the <see cref="IDbDataParameter"/> should hold.</param> ! public AnsiStringFixedLengthSqlType(int length) : base(DbType.AnsiStringFixedLength, length) ! { } } ! } --- 27,34 ---- /// </summary> /// <param name="length">The length of the string the <see cref="IDbDataParameter"/> should hold.</param> ! public AnsiStringFixedLengthSqlType( int length ) : base( DbType.AnsiStringFixedLength, length ) ! { } } ! } \ No newline at end of file Index: BooleanSqlType.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/SqlTypes/BooleanSqlType.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** BooleanSqlType.cs 11 Dec 2004 16:28:28 -0000 1.4 --- BooleanSqlType.cs 31 Dec 2004 22:31:48 -0000 1.5 *************** *** 2,6 **** using System.Data; ! namespace NHibernate.SqlTypes { /// <summary> --- 2,6 ---- using System.Data; ! namespace NHibernate.SqlTypes { /// <summary> *************** *** 12,23 **** /// </remarks> [Serializable] ! public class BooleanSqlType : SqlType { /// <summary> /// Initializes a new instance of the <see cref="BooleanSqlType"/> class. /// </summary> ! public BooleanSqlType() : base(DbType.Boolean) { } } ! } --- 12,23 ---- /// </remarks> [Serializable] ! public class BooleanSqlType : SqlType { /// <summary> /// Initializes a new instance of the <see cref="BooleanSqlType"/> class. /// </summary> ! public BooleanSqlType() : base( DbType.Boolean ) { } } ! } \ No newline at end of file Index: BinarySqlType.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/SqlTypes/BinarySqlType.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** BinarySqlType.cs 11 Dec 2004 16:28:28 -0000 1.4 --- BinarySqlType.cs 31 Dec 2004 22:31:48 -0000 1.5 *************** *** 14,34 **** /// </remarks> [Serializable] ! public class BinarySqlType : SqlType { - /// <summary> /// Initializes a new instance of the <see cref="BinarySqlType"/> class. /// </summary> ! public BinarySqlType() : base (DbType.Binary) { } ! /// <summary> /// Initializes a new instance of the <see cref="BinarySqlType"/> class. /// </summary> /// <param name="length">The length of the binary data the <see cref="IDbDataParameter"/> should hold</param> ! public BinarySqlType(int length) : base (DbType.Binary, length) { } } ! } --- 14,33 ---- /// </remarks> [Serializable] ! public class BinarySqlType : SqlType { /// <summary> /// Initializes a new instance of the <see cref="BinarySqlType"/> class. /// </summary> ! public BinarySqlType() : base( DbType.Binary ) { } ! /// <summary> /// Initializes a new instance of the <see cref="BinarySqlType"/> class. /// </summary> /// <param name="length">The length of the binary data the <see cref="IDbDataParameter"/> should hold</param> ! public BinarySqlType( int length ) : base( DbType.Binary, length ) { } } ! } \ No newline at end of file Index: AnsiStringSqlType.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/SqlTypes/AnsiStringSqlType.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** AnsiStringSqlType.cs 11 Dec 2004 16:28:28 -0000 1.4 --- AnsiStringSqlType.cs 31 Dec 2004 22:31:48 -0000 1.5 *************** *** 2,6 **** using System.Data; ! namespace NHibernate.SqlTypes { /// <summary> --- 2,6 ---- using System.Data; ! namespace NHibernate.SqlTypes { /// <summary> *************** *** 14,23 **** /// </remarks> [Serializable] ! public class AnsiStringSqlType : SqlType { /// <summary> /// Initializes a new instance of the <see cref="AnsiStringSqlType"/> class. /// </summary> ! public AnsiStringSqlType() : base(DbType.AnsiString) { } --- 14,23 ---- /// </remarks> [Serializable] ! public class AnsiStringSqlType : SqlType { /// <summary> /// Initializes a new instance of the <see cref="AnsiStringSqlType"/> class. /// </summary> ! public AnsiStringSqlType() : base( DbType.AnsiString ) { } *************** *** 27,33 **** /// </summary> /// <param name="length">The length of the string the <see cref="IDbDataParameter"/> should hold.</param> ! public AnsiStringSqlType(int length) : base(DbType.AnsiString, length) ! { } } ! } --- 27,33 ---- /// </summary> /// <param name="length">The length of the string the <see cref="IDbDataParameter"/> should hold.</param> ! public AnsiStringSqlType( int length ) : base( DbType.AnsiString, length ) ! { } } ! } \ No newline at end of file Index: BinaryBlobSqlType.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/SqlTypes/BinaryBlobSqlType.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** BinaryBlobSqlType.cs 11 Dec 2004 16:28:28 -0000 1.2 --- BinaryBlobSqlType.cs 31 Dec 2004 22:31:48 -0000 1.3 *************** *** 22,40 **** /// </remarks> [Serializable] ! public class BinaryBlobSqlType : BinarySqlType { - /// <summary> /// Initializes a new instance of the <see cref="BinaryBlobSqlType"/> class. /// </summary> ! public BinaryBlobSqlType() : base() { } ! /// <summary> /// Initializes a new instance of the <see cref="BinaryBlobSqlType"/> class. /// </summary> /// <param name="length">The length of the binary data the <see cref="IDbDataParameter"/> should hold</param> ! public BinaryBlobSqlType(int length) : base(length) { } --- 22,39 ---- /// </remarks> [Serializable] ! public class BinaryBlobSqlType : BinarySqlType { /// <summary> /// Initializes a new instance of the <see cref="BinaryBlobSqlType"/> class. /// </summary> ! public BinaryBlobSqlType() : base() { } ! /// <summary> /// Initializes a new instance of the <see cref="BinaryBlobSqlType"/> class. /// </summary> /// <param name="length">The length of the binary data the <see cref="IDbDataParameter"/> should hold</param> ! public BinaryBlobSqlType( int length ) : base( length ) { } |