Package com.avaje.tests.model.basic

Examples of com.avaje.tests.model.basic.TIntChild


    r.setName("root1");
   
    TIntRoot r2 = new TIntRoot();
    r.setName("root2");
   
    TIntChild c1 = new TIntChild();
    c1.setName("child1");
    c1.setChildProperty("cp1");
   
    TIntChild c2 = new TIntChild();
    c2.setName("child2");
    c2.setChildProperty("cp2");
   
   
    Ebean.save(r);
    Ebean.save(r2);
    Ebean.save(c1);
View Full Code Here

TOP

Related Classes of com.avaje.tests.model.basic.TIntChild

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.