From: <one...@us...> - 2003-01-30 13:03:15
|
Update of /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/engine In directory sc8-pr-cvs1:/tmp/cvs-serv20043/sf/hibernate/engine Added Files: CollectionSnapshot.java Log Message: more efficient collection update()s (keep a snapshot) fixed a problem where null values in one-to-many lists and maps caused an exception --- NEW FILE: CollectionSnapshot.java --- //$Id: CollectionSnapshot.java,v 1.1 2003/01/30 13:03:12 oneovthafew Exp $ package net.sf.hibernate.engine; import java.io.Serializable; public interface CollectionSnapshot extends Serializable { public Serializable getLoadedKey(); public String getLoadedPersisterRole(); public Serializable getSnapshot(); public boolean getDirty(); public void setDirty(); } |