Package com.avaje.tests.sp.model.car

Examples of com.avaje.tests.sp.model.car.Wheel


  @Test
  public void testInsertCarTwice() {

    List<Wheel> wheels = new LinkedList<Wheel>();
    wheels.add(new Wheel());
    wheels.add(new Wheel());
    wheels.add(new Wheel());
    wheels.add(new Wheel());

    Car c = new Car();
    c.setWheels(wheels);

    Ebean.save(c); // NOTE 1ST SAVE
View Full Code Here

TOP

Related Classes of com.avaje.tests.sp.model.car.Wheel

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.