Package org.hibernate.ogm.backendtck.associations.collection.types

Examples of org.hibernate.ogm.backendtck.associations.collection.types.GrandChild


  @Before
  public void prepareDb() throws Exception {
    getTransactionManager().begin();
    final EntityManager em = getFactory().createEntityManager();

    luke = new GrandChild();
    luke.setName( "Luke" );

    leia = new GrandChild();
    leia.setName( "Leia" );

    granny = new GrandMother();
    granny.getGrandChildren().add( luke );
    granny.getGrandChildren().add( leia );
View Full Code Here

TOP

Related Classes of org.hibernate.ogm.backendtck.associations.collection.types.GrandChild

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.