From: <one...@us...> - 2003-01-26 03:41:30
|
Update of /cvsroot/hibernate/Hibernate/cirrus/hibernate/map In directory sc8-pr-cvs1:/tmp/cvs-serv15674/hibernate/map Modified Files: OneToMany.java Log Message: minor changes Index: OneToMany.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/map/OneToMany.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** OneToMany.java 26 Nov 2002 03:35:43 -0000 1.13 --- OneToMany.java 26 Jan 2003 03:41:27 -0000 1.14 *************** *** 1,9 **** //$Id$ package cirrus.hibernate.map; ! import org.w3c.dom.*; ! import cirrus.hibernate.helpers.ReflectHelper; ! import cirrus.hibernate.type.EntityType; import cirrus.hibernate.Hibernate; import cirrus.hibernate.MappingException; public class OneToMany { --- 1,10 ---- //$Id$ package cirrus.hibernate.map; ! import org.w3c.dom.Node; ! import cirrus.hibernate.Hibernate; import cirrus.hibernate.MappingException; + import cirrus.hibernate.helpers.ReflectHelper; + import cirrus.hibernate.type.EntityType; public class OneToMany { *************** *** 22,26 **** try { type = (EntityType) Hibernate.association( ReflectHelper.classForName( ! node.getAttributes().getNamedItem("class").getNodeValue() ) ); } --- 23,27 ---- try { type = (EntityType) Hibernate.association( ReflectHelper.classForName( ! node.getAttributes().getNamedItem("class").getNodeValue() ) ); } |