Package se.plushogskolan.cdi.model

Examples of se.plushogskolan.cdi.model.Car


  private Owner owner;

  private CarRepository carRepository;

  public Car getCar() {
    Car car = carRepository.getNormalCar();
    car.setOwner(owner);
    return car;
  }
View Full Code Here

TOP

Related Classes of se.plushogskolan.cdi.model.Car

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.