Package org.hibernate.test.event.collection

Examples of org.hibernate.test.event.collection.ChildEntity


  public Collection createCollection() {
    return new ArrayList();
  }

  public Child createChild(String name) {
    return new ChildEntity( name );
  }
View Full Code Here


  public Collection createCollection() {
    return new ArrayList();
  }

  public Child createChild(String name) {
    return new ChildEntity( name );
  }
View Full Code Here

  }

  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 );
    s.delete( parent );
    tx.commit();
    s.close();
    int index = 0;
View Full Code Here

  public ParentWithCollectionOfEntities(String name) {
    super( name );
  }

  public Child createChild(String name) {
    return new ChildEntity( name );
  }
View Full Code Here

  public Collection createCollection() {
    return new ArrayList();
  }

  public Child createChild(String name) {
    return new ChildEntity( name );
  }
View Full Code Here

  public Collection createCollection() {
    return new ArrayList();
  }

  public Child createChild(String name) {
    return new ChildEntity( name );
  }
View Full Code Here

TOP

Related Classes of org.hibernate.test.event.collection.ChildEntity

Copyright © 2018 www.massapicom. 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.