Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Engine
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21261
Modified Files:
IMapping.cs
Log Message:
fixing xml comments and letting ReSharper do reformatting
Index: IMapping.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Engine/IMapping.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** IMapping.cs 20 Feb 2003 21:52:07 -0000 1.2
--- IMapping.cs 31 Dec 2004 15:38:35 -0000 1.3
***************
*** 1,12 ****
- using System;
using NHibernate.Type;
! namespace NHibernate.Engine {
/// <summary>
/// Defines operations common to "compiled" mappings (ie. <c>SessionFactory</c>) and
/// "uncompiled" mappings (ie <c>Configuration</c> that are used by implementors of <c>IType</c>
/// </summary>
! public interface IMapping {
! IType GetIdentifierType(System.Type persistentType);
}
! }
--- 1,18 ----
using NHibernate.Type;
! namespace NHibernate.Engine
! {
/// <summary>
/// Defines operations common to "compiled" mappings (ie. <c>SessionFactory</c>) and
/// "uncompiled" mappings (ie <c>Configuration</c> that are used by implementors of <c>IType</c>
/// </summary>
! public interface IMapping
! {
! /// <summary>
! ///
! /// </summary>
! /// <param name="persistentType"></param>
! /// <returns></returns>
! IType GetIdentifierType( System.Type persistentType );
}
! }
\ No newline at end of file
|