Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/SqlTypes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10547 Modified Files: SByteSqlType.cs SingleSqlType.cs StringClobSqlType.cs StringFixedLengthSqlType.cs StringSqlType.cs TimeSqlType.cs Log Message: fixing xml comments and letting ReSharper do reformatting Index: SingleSqlType.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/SqlTypes/SingleSqlType.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** SingleSqlType.cs 11 Dec 2004 16:28:28 -0000 1.4 --- SingleSqlType.cs 31 Dec 2004 22:32:41 -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 SingleSqlType : SqlType { /// <summary> /// Initializes a new instance of the <see cref="SingleSqlType"/> class. /// </summary> ! public SingleSqlType() : base(DbType.Single) { } } ! } --- 12,23 ---- /// </remarks> [Serializable] ! public class SingleSqlType : SqlType { /// <summary> /// Initializes a new instance of the <see cref="SingleSqlType"/> class. /// </summary> ! public SingleSqlType() : base( DbType.Single ) { } } ! } \ No newline at end of file Index: StringClobSqlType.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/SqlTypes/StringClobSqlType.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** StringClobSqlType.cs 11 Dec 2004 16:28:28 -0000 1.2 --- StringClobSqlType.cs 31 Dec 2004 22:32:41 -0000 1.3 *************** *** 22,32 **** /// </remarks> [Serializable] ! public class StringClobSqlType : StringSqlType { - /// <summary> /// Initializes a new instance of the <see cref="StringClobSqlType"/> class. /// </summary> ! public StringClobSqlType() : base() { } --- 22,31 ---- /// </remarks> [Serializable] ! public class StringClobSqlType : StringSqlType { /// <summary> /// Initializes a new instance of the <see cref="StringClobSqlType"/> class. /// </summary> ! public StringClobSqlType() : base() { } *************** *** 36,40 **** /// </summary> /// <param name="length">The length of the string the <see cref="IDbDataParameter"/> should hold.</param> ! public StringClobSqlType(int length) : base(length) { } --- 35,39 ---- /// </summary> /// <param name="length">The length of the string the <see cref="IDbDataParameter"/> should hold.</param> ! public StringClobSqlType( int length ) : base( length ) { } Index: StringFixedLengthSqlType.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/SqlTypes/StringFixedLengthSqlType.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** StringFixedLengthSqlType.cs 11 Dec 2004 16:28:28 -0000 1.4 --- StringFixedLengthSqlType.cs 31 Dec 2004 22:32:41 -0000 1.5 *************** *** 2,6 **** using System.Data; ! namespace NHibernate.SqlTypes { /// <summary> --- 2,6 ---- using System.Data; ! namespace NHibernate.SqlTypes { /// <summary> *************** *** 14,35 **** /// </remarks> [Serializable] ! public class StringFixedLengthSqlType : SqlType { /// <summary> /// Initializes a new instance of the <see cref="StringFixedLengthSqlType"/> class. /// </summary> ! public StringFixedLengthSqlType() : base(DbType.StringFixedLength) ! { } ! /// <summary> /// Initializes a new instance of the <see cref="StringFixedLengthSqlType"/> class. /// </summary> /// <param name="length">The length of the string the <see cref="IDbDataParameter"/> should hold.</param> ! public StringFixedLengthSqlType(int length) : base(DbType.StringFixedLength, length) ! { } } ! } ! --- 14,34 ---- /// </remarks> [Serializable] ! public class StringFixedLengthSqlType : SqlType { /// <summary> /// Initializes a new instance of the <see cref="StringFixedLengthSqlType"/> class. /// </summary> ! public StringFixedLengthSqlType() : base( DbType.StringFixedLength ) ! { } ! /// <summary> /// Initializes a new instance of the <see cref="StringFixedLengthSqlType"/> class. /// </summary> /// <param name="length">The length of the string the <see cref="IDbDataParameter"/> should hold.</param> ! public StringFixedLengthSqlType( int length ) : base( DbType.StringFixedLength, length ) ! { } } ! } \ No newline at end of file Index: TimeSqlType.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/SqlTypes/TimeSqlType.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TimeSqlType.cs 11 Dec 2004 16:28:28 -0000 1.3 --- TimeSqlType.cs 31 Dec 2004 22:32:41 -0000 1.4 *************** *** 17,21 **** /// Initializes a new instance of the <see cref="TimeSqlType"/> class. /// </summary> ! public TimeSqlType() : base(DbType.Time) { } --- 17,21 ---- /// Initializes a new instance of the <see cref="TimeSqlType"/> class. /// </summary> ! public TimeSqlType() : base( DbType.Time ) { } Index: SByteSqlType.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/SqlTypes/SByteSqlType.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SByteSqlType.cs 11 Dec 2004 16:28:28 -0000 1.1 --- SByteSqlType.cs 31 Dec 2004 22:32:41 -0000 1.2 *************** *** 17,24 **** /// Initializes a new instance of the <see cref="SByteSqlType"/> class. /// </summary> ! public SByteSqlType() : base(DbType.SByte) { } } ! } ! --- 17,23 ---- /// Initializes a new instance of the <see cref="SByteSqlType"/> class. /// </summary> ! public SByteSqlType() : base( DbType.SByte ) { } } ! } \ No newline at end of file Index: StringSqlType.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/SqlTypes/StringSqlType.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** StringSqlType.cs 11 Dec 2004 16:28:28 -0000 1.4 --- StringSqlType.cs 31 Dec 2004 22:32:41 -0000 1.5 *************** *** 2,6 **** using System.Data; ! namespace NHibernate.SqlTypes { /// <summary> --- 2,6 ---- using System.Data; ! namespace NHibernate.SqlTypes { /// <summary> *************** *** 14,24 **** /// </remarks> [Serializable] ! public class StringSqlType : SqlType { /// <summary> /// Initializes a new instance of the <see cref="StringSqlType"/> class. /// </summary> ! public StringSqlType() : base(DbType.String) ! { } --- 14,24 ---- /// </remarks> [Serializable] ! public class StringSqlType : SqlType { /// <summary> /// Initializes a new instance of the <see cref="StringSqlType"/> class. /// </summary> ! public StringSqlType() : base( DbType.String ) ! { } *************** *** 27,33 **** /// </summary> /// <param name="length">The length of the string the <see cref="IDbDataParameter"/> should hold.</param> ! public StringSqlType(int length) : base(DbType.String, length) ! { } } ! } --- 27,33 ---- /// </summary> /// <param name="length">The length of the string the <see cref="IDbDataParameter"/> should hold.</param> ! public StringSqlType( int length ) : base( DbType.String, length ) ! { } } ! } \ No newline at end of file |