ReservationImpl.java
// license-header java merge-point
/**
* This is only generated once! It will never be overwritten.
* You can (and have to!) safely modify it by hand.
*/
package org.andromda.samples.carrental.contracts;
import java.util.Date;
/**
* @see Reservation
*/
public class ReservationImpl
extends Reservation
{
/**
* The serial version UID of this class. Needed for serialization.
*/
private static final long serialVersionUID = 8662713071753922409L;
/**
* @see org.andromda.samples.carrental.contracts.Reservation#create(long, Date, String)
*/
public Reservation create(long id, Date reservationDate, String comfortClass)
{
//@todo implement public Reservation create(long id, Date reservationDate, String comfortClass)
return null;
}
}