Package org.hibernate.test.event.collection

Examples of org.hibernate.test.event.collection.CollectionListeners.clear()


  public void testDeleteParentButNotChild() {
    CollectionListeners listeners = new CollectionListeners( getSessions() );
    ParentWithCollection parent = createParentWithOneChild( "parent", "child" );
    ChildEntity child = ( ChildEntity ) parent.getChildren().iterator().next();
    listeners.clear();
    Session s = openSession();
    Transaction tx = s.beginTransaction();
    parent = ( ParentWithCollection ) s.get( parent.getClass(), parent.getId() );
    child = ( ChildEntity ) s.get( child.getClass(), child.getId() );
    parent.removeChild( child );
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.