From: Konstantin P. <ko...@us...> - 2006-09-09 13:16:08
|
Update of /cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/test/java/org/xdoclet/plugin/hibernate/pojo In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv19076/src/test/java/org/xdoclet/plugin/hibernate/pojo Modified Files: SetMapping.hbm.xml SetMapping.java Simple.java Log Message: fix for XDP-141 problem, tag parameters are changed!!! Index: SetMapping.hbm.xml =================================================================== RCS file: /cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/test/java/org/xdoclet/plugin/hibernate/pojo/SetMapping.hbm.xml,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** SetMapping.hbm.xml 4 Jan 2006 10:20:00 -0000 1.17 --- SetMapping.hbm.xml 9 Sep 2006 13:16:05 -0000 1.18 *************** *** 22,25 **** --- 22,26 ---- </set> <set name="fieldSet" access="field"> + <comment>blurge bang</comment> <key/> <one-to-many class="org.xdoclet.plugin.hibernate.pojo.Simple"/> Index: SetMapping.java =================================================================== RCS file: /cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/test/java/org/xdoclet/plugin/hibernate/pojo/SetMapping.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** SetMapping.java 24 Aug 2005 09:42:36 -0000 1.13 --- SetMapping.java 9 Sep 2006 13:16:05 -0000 1.14 *************** *** 19,24 **** * test one-to-many set using multiple key-column * ! * @hibernate.set * @hibernate.one-to-many class="org.xdoclet.plugin.hibernate.pojo.Simple" */ private Set fieldSet; --- 19,25 ---- * test one-to-many set using multiple key-column * ! * @hibernate.set * @hibernate.one-to-many class="org.xdoclet.plugin.hibernate.pojo.Simple" + * @hibernate.comment blurge bang */ private Set fieldSet; Index: Simple.java =================================================================== RCS file: /cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/test/java/org/xdoclet/plugin/hibernate/pojo/Simple.java,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** Simple.java 15 Jan 2006 11:49:17 -0000 1.30 --- Simple.java 9 Sep 2006 13:16:05 -0000 1.31 *************** *** 15,21 **** * dynamic-update="true" dynamic-insert="false" * batch-size="239" select-before-update="true" ! * optimistic-lock="version" lazy="true" comment="This is comment" * @hibernate.meta attribute="attribute" inherit="true" value="blurge" ! * * @hibernate.typedef name="TypeName1" class="EnumUserType" * @hibernate.typedef-param typedef-name="TypeName1" name="enumClassName" value="a.B" --- 15,21 ---- * dynamic-update="true" dynamic-insert="false" * batch-size="239" select-before-update="true" ! * optimistic-lock="version" lazy="true" * @hibernate.meta attribute="attribute" inherit="true" value="blurge" ! * @hibernate.comment This is comment * @hibernate.typedef name="TypeName1" class="EnumUserType" * @hibernate.typedef-param typedef-name="TypeName1" name="enumClassName" value="a.B" |