From: <one...@us...> - 2003-03-20 13:58:56
|
Update of /cvsroot/hibernate/Hibernate/cirrus/hibernate/test In directory sc8-pr-cvs1:/tmp/cvs-serv28555/hibernate/test Modified Files: Child.java Detail.java Foo.java FooBar.hbm.xml Glarch.hbm.xml Glarch.java Many.hbm.xml Many.java Master.java MasterDetail.hbm.xml One.hbm.xml One.java Parent.java ParentChild.hbm.xml Log Message: added some new logging Index: Child.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/test/Child.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Child.java 15 Jun 2002 05:05:00 -0000 1.1 --- Child.java 20 Mar 2003 13:58:48 -0000 1.2 *************** *** 5,8 **** --- 5,16 ---- private Parent parent; private int count; + private int x; + + public int getX() { + return x; + } + public void setX(int x) { + this.x = x; + } public Parent getParent() { Index: Detail.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/test/Detail.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Detail.java 24 Sep 2002 16:43:26 -0000 1.4 --- Detail.java 20 Mar 2003 13:58:48 -0000 1.5 *************** *** 10,13 **** --- 10,21 ---- private int i; private Set details; + private int x; + + public int getX() { + return x; + } + public void setX(int x) { + this.x = x; + } public Master getMaster() { Index: Foo.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/test/Foo.java,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** Foo.java 26 Dec 2002 03:35:08 -0000 1.38 --- Foo.java 20 Mar 2003 13:58:48 -0000 1.39 *************** *** 61,64 **** --- 61,72 ---- private int version; private Timestamp versionTimestamp; + private int x; + + public int getX() { + return x; + } + public void setX(int x) { + this.x = x; + } public boolean onSave(Session db) throws CallbackException { Index: FooBar.hbm.xml =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/test/FooBar.hbm.xml,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** FooBar.hbm.xml 27 Dec 2002 11:54:47 -0000 1.19 --- FooBar.hbm.xml 20 Mar 2003 13:58:49 -0000 1.20 *************** *** 52,55 **** --- 52,56 ---- <column name="float_" unique-key="abc" not-null="true"/> </property> + <property name="x"/> <property name="double" column="double_"/> <collection name="bytes" role="foo_bytes"/> Index: Glarch.hbm.xml =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/test/Glarch.hbm.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Glarch.hbm.xml 5 Oct 2002 09:33:42 -0000 1.5 --- Glarch.hbm.xml 20 Mar 2003 13:58:49 -0000 1.6 *************** *** 25,28 **** --- 25,29 ---- <version name="version"/> <property name="name"/> + <property name="x"/> <!-- <property name="currency"/> --> <many-to-one name="next" column="next_" class="cirrus.hibernate.test.Glarch"/> Index: Glarch.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/test/Glarch.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** Glarch.java 7 Dec 2002 08:10:24 -0000 1.19 --- Glarch.java 20 Mar 2003 13:58:49 -0000 1.20 *************** *** 21,26 **** private GlarchProxy[] proxyArray; private Set proxySet; ! //private Currency currency = Currency.getInstance( Locale.getDefault() ); public int getVersion() { return version; --- 21,32 ---- private GlarchProxy[] proxyArray; private Set proxySet; ! private int x; + public int getX() { + return x; + } + public void setX(int x) { + this.x = x; + } public int getVersion() { return version; *************** *** 117,120 **** --- 123,127 ---- this.currency = currency; }*/ + } Index: Many.hbm.xml =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/test/Many.hbm.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Many.hbm.xml 4 Aug 2002 10:56:05 -0000 1.1 --- Many.hbm.xml 20 Mar 2003 13:58:49 -0000 1.2 *************** *** 8,11 **** --- 8,12 ---- <generator class="hilo.long" /> </id> + <property name="x"/> <many-to-one name="one" column="one_key" class="cirrus.hibernate.test.One"/> </class> Index: Many.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/test/Many.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Many.java 5 Mar 2002 15:09:13 -0000 1.1 --- Many.java 20 Mar 2003 13:58:49 -0000 1.2 *************** *** 6,9 **** --- 6,17 ---- long key; One one; + private int x; + + public int getX() { + return x; + } + public void setX(int x) { + this.x = x; + } public void setKey(long key) Index: Master.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/test/Master.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Master.java 9 Jan 2003 09:40:20 -0000 1.9 --- Master.java 20 Mar 2003 13:58:49 -0000 1.10 *************** *** 16,19 **** --- 16,27 ---- private Date stamp; private BigDecimal bigDecimal = new BigDecimal("1234.123"); + private int x; + + public int getX() { + return x; + } + public void setX(int x) { + this.x = x; + } public Set getDetails() { Index: MasterDetail.hbm.xml =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/test/MasterDetail.hbm.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** MasterDetail.hbm.xml 24 Oct 2002 05:20:33 -0000 1.9 --- MasterDetail.hbm.xml 20 Mar 2003 13:58:49 -0000 1.10 *************** *** 9,12 **** --- 9,13 ---- <timestamp name="stamp" column="ts_"/> <property name="name"/> + <property name="x"/> <property name="bigDecimal" length="5" column="big_dec"> <column name="big_dec" sql-type="DECIMAL(5,3)"/> *************** *** 36,39 **** --- 37,41 ---- </id> <property name="i"/> + <property name="x"/> <many-to-one name="master" column="master_key"/> <!--not-null="true"--> <!-- <cache timeout="10000" type="readwrite"/> --> Index: One.hbm.xml =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/test/One.hbm.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** One.hbm.xml 22 Jan 2003 13:06:39 -0000 1.2 --- One.hbm.xml 20 Mar 2003 13:58:49 -0000 1.3 *************** *** 8,11 **** --- 8,12 ---- <generator class="hilo.long" /> </id> + <property name="x"/> <property column="one_value" name="value"/> <set role="manies" readonly="true" lazy="true"> Index: One.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/test/One.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** One.java 30 Jul 2002 14:43:17 -0000 1.2 --- One.java 20 Mar 2003 13:58:49 -0000 1.3 *************** *** 9,12 **** --- 9,20 ---- String value; Set manies; + private int x; + + public int getX() { + return x; + } + public void setX(int x) { + this.x = x; + } public void setKey(long key) Index: Parent.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/test/Parent.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Parent.java 15 Jun 2002 05:05:00 -0000 1.1 --- Parent.java 20 Mar 2003 13:58:49 -0000 1.2 *************** *** 6,9 **** --- 6,17 ---- private int count; private Child child; + private int x; + + public int getX() { + return x; + } + public void setX(int x) { + this.x = x; + } public int getCount() { Index: ParentChild.hbm.xml =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/test/ParentChild.hbm.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ParentChild.hbm.xml 31 Aug 2002 09:34:09 -0000 1.4 --- ParentChild.hbm.xml 20 Mar 2003 13:58:49 -0000 1.5 *************** *** 11,14 **** --- 11,15 ---- <property name="count" column="count_"/> <one-to-one name="child"/> + <property name="x"/> </class> *************** *** 19,22 **** --- 20,24 ---- <one-to-one name="parent" class="cirrus.hibernate.test.Parent" constrained="true"/> <property name="count" column="count_"/> + <property name="x"/> </class> |