Update of
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/test/java/org/xdoclet/plugin/hibernate/id
In directory
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18657/src/test/java/org/xdoclet/plugin/hibernate/id
Modified Files:
ExplicitMethodIdBean.hbm.xml ExplicitMethodIdBean.java
FieldIdBean.hbm.xml FieldIdBean.java
ImplicitMethodIdBean.hbm.xml ImplicitMethodIdBean.java
Log Message:
(XDP-47) Hibernate3 support merged into trunk
Index: ImplicitMethodIdBean.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/test/java/org/xdoclet/plugin/hibernate/id/ImplicitMethodIdBean.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ImplicitMethodIdBean.java 28 Jan 2005 19:22:08 -0000 1.1
--- ImplicitMethodIdBean.java 26 Apr 2005 07:00:16 -0000 1.2
***************
*** 1,29 ****
! /*
! * Copyright 2005 by J Tec Team GbR
! * All rights reserved
! */
! package org.xdoclet.plugin.hibernate.id;
!
! /**
! * @author k.pribluda
! * @hibernate.class table="table"
! */
! public class ImplicitMethodIdBean {
! int id;
!
! /**
! * @hibernate.id generator-class="native"
! * @return Returns the id.
! */
! public int getId() {
! return id;
! }
!
! /**
! * @param id
! * The id to set.
! */
! public void setId(int id) {
! this.id = id;
! }
! }
--- 1,33 ----
! /*
! * Copyright (c) 2003
! * XDoclet Team
! * All rights reserved.
! */
! /*
! * Copyright 2005 by J Tec Team GbR
! * All rights reserved
! */
! package org.xdoclet.plugin.hibernate.id;
!
! /**
! * @author k.pribluda
! * @hibernate.class table="table"
! */
! public class ImplicitMethodIdBean {
! int id;
!
! /**
! * @param id The id to set.
! */
! public void setId(int id) {
! this.id = id;
! }
!
! /**
! * @return Returns the id.
! * @hibernate.id generator-class="native"
! */
! public int getId() {
! return id;
! }
! }
\ No newline at end of file
Index: ImplicitMethodIdBean.hbm.xml
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/test/java/org/xdoclet/plugin/hibernate/id/ImplicitMethodIdBean.hbm.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ImplicitMethodIdBean.hbm.xml 28 Jan 2005 19:22:08 -0000 1.1
--- ImplicitMethodIdBean.hbm.xml 26 Apr 2005 07:00:16 -0000 1.2
***************
*** 1,9 ****
! <?xml version="1.0"?>
! <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD
2.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">
! <hibernate-mapping>
! <class name="org.xdoclet.plugin.hibernate.id.ImplicitMethodIdBean"
table="table">
! <id name="id" type="int">
! <generator class="native"/>
! </id>
! </class>
! </hibernate-mapping>
--- 1,9 ----
! <?xml version="1.0"?>
! <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD
2.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">
! <hibernate-mapping>
! <class name="org.xdoclet.plugin.hibernate.id.ImplicitMethodIdBean"
table="table">
! <id name="id" type="int">
! <generator class="native"/>
! </id>
! </class>
! </hibernate-mapping>
Index: ExplicitMethodIdBean.hbm.xml
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/test/java/org/xdoclet/plugin/hibernate/id/ExplicitMethodIdBean.hbm.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ExplicitMethodIdBean.hbm.xml 28 Jan 2005 19:22:08 -0000 1.1
--- ExplicitMethodIdBean.hbm.xml 26 Apr 2005 07:00:15 -0000 1.2
***************
*** 1,9 ****
! <?xml version="1.0"?>
! <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD
2.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">
! <hibernate-mapping>
! <class name="org.xdoclet.plugin.hibernate.id.ExplicitMethodIdBean"
table="table">
! <id name="id" type="glarch">
! <generator class="glem"/>
! </id>
! </class>
! </hibernate-mapping>
--- 1,9 ----
! <?xml version="1.0"?>
! <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD
2.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">
! <hibernate-mapping>
! <class name="org.xdoclet.plugin.hibernate.id.ExplicitMethodIdBean"
table="table">
! <id name="id" type="glarch">
! <generator class="glem"/>
! </id>
! </class>
! </hibernate-mapping>
Index: FieldIdBean.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/test/java/org/xdoclet/plugin/hibernate/id/FieldIdBean.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** FieldIdBean.java 28 Jan 2005 19:22:08 -0000 1.1
--- FieldIdBean.java 26 Apr 2005 07:00:16 -0000 1.2
***************
*** 1,32 ****
! /*
! * Copyright 2005 by J Tec Team GbR
! * All rights reserved
! */
! package org.xdoclet.plugin.hibernate.id;
!
! /**
! * @author k.pribluda
! * @hibernate.class table="table"
! */
! public class FieldIdBean {
! /**
! * @hibernate.id generator-class="glem" type="glarch"
! */
! int id;
!
! /**
!
! * @return Returns the id.
! */
! public int getId() {
! return id;
! }
!
! /**
! * @param id
! * The id to set.
! */
! public void setId(int id) {
! this.id = id;
! }
! }
--- 1,35 ----
! /*
! * Copyright (c) 2003
! * XDoclet Team
! * All rights reserved.
! */
! /*
! * Copyright 2005 by J Tec Team GbR
! * All rights reserved
! */
! package org.xdoclet.plugin.hibernate.id;
!
! /**
! * @author k.pribluda
! * @hibernate.class table="table"
! */
! public class FieldIdBean {
! /**
! * @hibernate.id generator-class="glem" type="glarch"
! */
! int id;
!
! /**
! * @param id The id to set.
! */
! public void setId(int id) {
! this.id = id;
! }
!
! /**
! * @return Returns the id.
! */
! public int getId() {
! return id;
! }
! }
\ No newline at end of file
Index: FieldIdBean.hbm.xml
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/test/java/org/xdoclet/plugin/hibernate/id/FieldIdBean.hbm.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** FieldIdBean.hbm.xml 28 Jan 2005 19:22:08 -0000 1.1
--- FieldIdBean.hbm.xml 26 Apr 2005 07:00:16 -0000 1.2
***************
*** 1,9 ****
! <?xml version="1.0"?>
! <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD
2.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">
! <hibernate-mapping>
! <class name="org.xdoclet.plugin.hibernate.id.FieldIdBean" table="table">
! <id name="id" type="glarch" access="field">
! <generator class="glem"/>
! </id>
! </class>
! </hibernate-mapping>
--- 1,9 ----
! <?xml version="1.0"?>
! <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD
2.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">
! <hibernate-mapping>
! <class name="org.xdoclet.plugin.hibernate.id.FieldIdBean" table="table">
! <id name="id" type="glarch" access="field">
! <generator class="glem"/>
! </id>
! </class>
! </hibernate-mapping>
Index: ExplicitMethodIdBean.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/test/java/org/xdoclet/plugin/hibernate/id/ExplicitMethodIdBean.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ExplicitMethodIdBean.java 28 Jan 2005 19:22:08 -0000 1.1
--- ExplicitMethodIdBean.java 26 Apr 2005 07:00:16 -0000 1.2
***************
*** 1,29 ****
! /*
! * Copyright 2005 by J Tec Team GbR
! * All rights reserved
! */
! package org.xdoclet.plugin.hibernate.id;
!
! /**
! * @author k.pribluda
! * @hibernate.class table="table"
! */
! public class ExplicitMethodIdBean {
! int id;
!
! /**
! * @hibernate.id generator-class="glem" type="glarch"
! * @return Returns the id.
! */
! public int getId() {
! return id;
! }
!
! /**
! * @param id
! * The id to set.
! */
! public void setId(int id) {
! this.id = id;
! }
! }
--- 1,33 ----
! /*
! * Copyright (c) 2003
! * XDoclet Team
! * All rights reserved.
! */
! /*
! * Copyright 2005 by J Tec Team GbR
! * All rights reserved
! */
! package org.xdoclet.plugin.hibernate.id;
!
! /**
! * @author k.pribluda
! * @hibernate.class table="table"
! */
! public class ExplicitMethodIdBean {
! int id;
!
! /**
! * @param id The id to set.
! */
! public void setId(int id) {
! this.id = id;
! }
!
! /**
! * @return Returns the id.
! * @hibernate.id generator-class="glem" type="glarch"
! */
! public int getId() {
! return id;
! }
! }
\ No newline at end of file
-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
xdoclet-plugins-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xdoclet-plugins-commits