From: Michael D. <mik...@us...> - 2004-06-17 21:17:22
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12086 Modified Files: A.cs ABC.hbm.xml ABCProxy.hbm.xml C1.cs D.cs Log Message: Minor changes for tests. Index: D.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel/D.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** D.cs 6 Apr 2004 10:51:42 -0000 1.1 --- D.cs 17 Jun 2004 21:17:13 -0000 1.2 *************** *** 1,12 **** - //------------------------------------------------------------------------------ - // <autogenerated> - // This code was generated by a tool. - // Runtime Version: v1.1.4322 - // - // Changes to this file may cause incorrect behavior and will be lost if - // the code is regenerated. - // </autogenerated> - //------------------------------------------------------------------------------ - using System; --- 1,2 ---- *************** *** 15,23 **** /// <summary> ! /// POJO for D /// </summary> - /// <remark> - /// This class is autogenerated - /// </remark> [Serializable] public class D --- 5,10 ---- /// <summary> ! /// POCO for D /// </summary> [Serializable] public class D *************** *** 25,36 **** #region Fields - /// <summary> - /// Holder for id - /// </summary> - private Int64 _id; ! /// <summary> ! /// Holder for amount ! /// </summary> private Double _amount; --- 12,17 ---- #region Fields ! private Int64 _id; private Double _amount; *************** *** 52,57 **** public D(Int64 id, Double amount) { ! this._id = id; ! this._amount = amount; } --- 33,38 ---- public D(Int64 id, Double amount) { ! _id = id; ! _amount = amount; } *************** *** 62,66 **** public D(Int64 id) { ! this._id = id; } #endregion --- 43,47 ---- public D(Int64 id) { ! _id = id; } #endregion *************** *** 70,98 **** /// Get/set for id /// </summary> ! public Int64 id { ! get ! { ! return this._id; ! } ! set ! { ! this._id = value; ! } } /// <summary> ! /// Get/set for amount /// </summary> ! public Double amount { ! get ! { ! return this._amount; ! } ! set ! { ! this._amount = value; ! } } --- 51,67 ---- /// Get/set for id /// </summary> ! public Int64 Id { ! get { return _id; } ! set { _id = value; } } /// <summary> ! /// Get/set for Amount /// </summary> ! public Double Amount { ! get { return _amount; } ! set { _amount = value; } } Index: A.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel/A.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** A.cs 3 Jun 2004 18:01:24 -0000 1.2 --- A.cs 17 Jun 2004 21:17:13 -0000 1.3 *************** *** 52,60 **** get { ! return this._id; } set { ! this._id = value; } } --- 52,60 ---- get { ! return _id; } set { ! _id = value; } } *************** *** 67,75 **** get { ! return this._name; } set { ! this._name = value; } } --- 67,75 ---- get { ! return _name; } set { ! _name = value; } } Index: ABCProxy.hbm.xml =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel/ABCProxy.hbm.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ABCProxy.hbm.xml 3 Jun 2004 18:01:24 -0000 1.3 --- ABCProxy.hbm.xml 17 Jun 2004 21:17:13 -0000 1.4 *************** *** 29,36 **** <class name="NHibernate.DomainModel.D, NHibernate.DomainModel" discriminator-value="0" proxy="NHibernate.DomainModel.D, NHibernate.DomainModel"> ! <id name="id" unsaved-value="null" type="Int64"> <generator class="assigned" /> </id> ! <property name="amount" type="Double" /> </class> </hibernate-mapping> \ No newline at end of file --- 29,36 ---- <class name="NHibernate.DomainModel.D, NHibernate.DomainModel" discriminator-value="0" proxy="NHibernate.DomainModel.D, NHibernate.DomainModel"> ! <id name="Id" unsaved-value="null" type="Int64"> <generator class="assigned" /> </id> ! <property name="Amount" type="Double" /> </class> </hibernate-mapping> \ No newline at end of file Index: C1.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel/C1.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** C1.cs 3 Jun 2004 18:01:24 -0000 1.3 --- C1.cs 17 Jun 2004 21:17:13 -0000 1.4 *************** *** 78,86 **** get { ! return this._address; } set { ! this._address = value; } } --- 78,86 ---- get { ! return _address; } set { ! _address = value; } } *************** *** 93,101 **** get { ! return this._d; } set { ! this._d = value; } } --- 93,101 ---- get { ! return _d; } set { ! _d = value; } } Index: ABC.hbm.xml =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel/ABC.hbm.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ABC.hbm.xml 3 Jun 2004 18:01:24 -0000 1.4 --- ABC.hbm.xml 17 Jun 2004 21:17:13 -0000 1.5 *************** *** 60,64 **** > <id ! name="id" unsaved-value="null" > --- 60,64 ---- > <id ! name="Id" unsaved-value="null" > *************** *** 66,70 **** </id> <property ! name="amount" type="Double" /> --- 66,70 ---- </id> <property ! name="Amount" type="Double" /> |