Update of /cvsroot/hibernate/Hibernate/cirrus/hibernate/engine
In directory sc8-pr-cvs1:/tmp/cvs-serv9434/hibernate/engine
Modified Files:
SessionImplementor.java
Log Message:
readonly bags and lists now no longer require initialization for add(), addAll()
Index: SessionImplementor.java
===================================================================
RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/engine/SessionImplementor.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** SessionImplementor.java 5 Nov 2002 16:58:13 -0000 1.7
--- SessionImplementor.java 7 Dec 2002 09:05:41 -0000 1.8
***************
*** 66,69 ****
--- 66,73 ----
*/
public void initialize(PersistentCollection collection, boolean writing) throws HibernateException, SQLException;
+ /**
+ * Is this the readonly end of a bidirectional association?
+ */
+ public boolean isCollectionReadOnly(PersistentCollection collection);
/**
|