Update of /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/mapping
In directory sc8-pr-cvs1:/tmp/cvs-serv2643/src/net/sf/hibernate/mapping
Modified Files:
Collection.java
Log Message:
removed exceptions that occur if an object is saved or deleted multiple times in a session
added <parent> subelement to <composite-element> and <nested-composite-element>
Index: Collection.java
===================================================================
RCS file: /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/mapping/Collection.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Collection.java 2 Jan 2003 11:01:49 -0000 1.3
--- Collection.java 3 Jan 2003 13:36:01 -0000 1.4
***************
*** 218,221 ****
--- 218,225 ----
return inverse;
}
+
+ public Class getOwnerClass() {
+ return owner.getPersistentClass();
+ }
}
|