blob: 0de88cf3c825053a7fd6f95d1810daf79ab6a52c [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id: Vin.java,v 1.1 2008/04/17 11:33:39 mtaal Exp $
*/
package fleet;
import java.util.Date;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc --> A representation of the model object '<em><b>Vin</b></em>'. <!--
* end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link fleet.Vin#getId <em>Id</em>}</li>
* <li>{@link fleet.Vin#getInstallationDate <em>Installation Date</em>}</li>
* <li>{@link fleet.Vin#getVehicle <em>Vehicle</em>}</li>
* </ul>
* </p>
*
* @see fleet.FleetPackage#getVin()
* @model
* @generated
*/
public interface Vin extends EObject {
/**
* Returns the value of the '<em><b>Id</b></em>' attribute. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Id</em>' attribute isn't clear, there really should be more of a
* description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Id</em>' attribute.
* @see #setId(String)
* @see fleet.FleetPackage#getVin_Id()
* @model
* @generated
*/
String getId();
/**
* Sets the value of the '{@link fleet.Vin#getId <em>Id</em>}' attribute. <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Id</em>' attribute.
* @see #getId()
* @generated
*/
void setId(String value);
/**
* Returns the value of the '<em><b>Installation Date</b></em>' attribute. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Installation Date</em>' attribute isn't clear, there really should
* be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Installation Date</em>' attribute.
* @see #setInstallationDate(Date)
* @see fleet.FleetPackage#getVin_InstallationDate()
* @model
* @generated
*/
Date getInstallationDate();
/**
* Sets the value of the '{@link fleet.Vin#getInstallationDate <em>Installation Date</em>}'
* attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Installation Date</em>' attribute.
* @see #getInstallationDate()
* @generated
*/
void setInstallationDate(Date value);
/**
* Returns the value of the '<em><b>Vehicle</b></em>' reference. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Vehicle</em>' reference isn't clear, there really should be more of
* a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Vehicle</em>' reference.
* @see #setVehicle(Vehicle)
* @see fleet.FleetPackage#getVin_Vehicle()
* @model required="true"
* @generated
*/
Vehicle getVehicle();
/**
* Sets the value of the '{@link fleet.Vin#getVehicle <em>Vehicle</em>}' reference. <!--
* begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Vehicle</em>' reference.
* @see #getVehicle()
* @generated
*/
void setVehicle(Vehicle value);
} // Vin