Update of /cvsroot/nhibernate/nhibernate/src/NHibernate
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20832/src/NHibernate
Modified Files:
IUserType.cs
Log Message:
removed DbType {get;} from IUserType since SqlType {get;} is the
property being used to get that.
Index: IUserType.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/IUserType.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** IUserType.cs 10 Feb 2004 18:26:21 -0000 1.3
--- IUserType.cs 6 Dec 2004 03:01:26 -0000 1.4
***************
*** 10,14 ****
/// <remarks>
/// <para>
! /// The inteface abstracts user code from future changes to the <c>HibernateType</c> inteface,
/// simplifies the implementation of custom types and hides certain "internal interfaces from
/// user code.
--- 10,14 ----
/// <remarks>
/// <para>
! /// The inteface abstracts user code from future changes to the <see cref="Type.IType"/> inteface,
/// simplifies the implementation of custom types and hides certain "internal interfaces from
/// user code.
***************
*** 22,38 ****
/// </para>
/// <para>
! /// Alternatively, custom types could implement <c>HibernateType</c> directly or extend one of the
/// abstract classes in <c>NHibernate.Type</c>. This approach risks future incompatible changes
/// to classes or intefaces in the package.
/// </para>
/// </remarks>
! public interface IUserType {
!
! /// <summary>
! /// The DbType codes for the columns mapped by this type. The codes are defined on
! /// <c></c>
! /// </summary>
! DbType[] DbTypes { get; }
!
/// <summary>
/// The SQL types for the columns mapped by this type.
--- 22,32 ----
/// </para>
/// <para>
! /// Alternatively, custom types could implement <see cref="Types.IType"/> directly or extend one of the
/// abstract classes in <c>NHibernate.Type</c>. This approach risks future incompatible changes
/// to classes or intefaces in the package.
/// </para>
/// </remarks>
! public interface IUserType
! {
/// <summary>
/// The SQL types for the columns mapped by this type.
|