Package org.jboss.test.aop.declare.datalayer

Examples of org.jboss.test.aop.declare.datalayer.FourWheeler.save()


   public void createVehicles()
   {
      Car car = new Car("x", "x");
      car.save();
      FourWheeler fourWheeler = new FourWheeler("x");
      fourWheeler.save();
      Truck truck = new Truck("x");
      truck.save();
      Vehicle vehicle = new Vehicle("x");
      vehicle.save();
   }
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.