ReservationImpl.java

  1. // license-header java merge-point
  2. /**
  3.  * This is only generated once! It will never be overwritten.
  4.  * You can (and have to!) safely modify it by hand.
  5.  */
  6. package org.andromda.samples.carrental.contracts;

  7. import java.util.Date;

  8. /**
  9.  * @see Reservation
  10.  */
  11. public class ReservationImpl
  12.     extends Reservation
  13. {
  14.     /**
  15.      * The serial version UID of this class. Needed for serialization.
  16.      */
  17.     private static final long serialVersionUID = 8662713071753922409L;

  18.     /**
  19.      * @see org.andromda.samples.carrental.contracts.Reservation#create(long, Date, String)
  20.      */
  21.     public Reservation create(long id, Date reservationDate, String comfortClass)
  22.     {
  23.         //@todo implement public Reservation create(long id, Date reservationDate, String comfortClass)
  24.         return null;
  25.     }
  26. }