Package org.hibernate.test.event.collection

Examples of org.hibernate.test.event.collection.ParentWithCollection.removeChild()


    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 );
    s.delete( parent );
    tx.commit();
    s.close();
    int index = 0;
    checkResult( listeners, listeners.getInitializeCollectionListener(), parent, index++ );
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.