blob: 7788c7c6638f08c78776014afff7c4dfed0f225d [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id: Address.java,v 1.1 2008/04/17 11:33:39 mtaal Exp $
*/
package fleet;
import temporal.Temporal;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc --> A representation of the model object '<em><b>Address</b></em>'. <!--
* end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link fleet.Address#getStreetName <em>Street Name</em>}</li>
* <li>{@link fleet.Address#getStreetNumber <em>Street Number</em>}</li>
* <li>{@link fleet.Address#getCity <em>City</em>}</li>
* <li>{@link fleet.Address#getCountry <em>Country</em>}</li>
* </ul>
* </p>
*
* @see fleet.FleetPackage#getAddress()
* @model
* @generated
*/
public interface Address extends Temporal {
/**
* Returns the value of the '<em><b>Street Name</b></em>' attribute. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Street Name</em>' attribute isn't clear, there really should be more
* of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Street Name</em>' attribute.
* @see #setStreetName(String)
* @see fleet.FleetPackage#getAddress_StreetName()
* @model
* @generated
*/
String getStreetName();
/**
* Sets the value of the '{@link fleet.Address#getStreetName <em>Street Name</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Street Name</em>' attribute.
* @see #getStreetName()
* @generated
*/
void setStreetName(String value);
/**
* Returns the value of the '<em><b>Street Number</b></em>' attribute. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Street Number</em>' attribute isn't clear, there really should be
* more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Street Number</em>' attribute.
* @see #setStreetNumber(String)
* @see fleet.FleetPackage#getAddress_StreetNumber()
* @model
* @generated
*/
String getStreetNumber();
/**
* Sets the value of the '{@link fleet.Address#getStreetNumber <em>Street Number</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Street Number</em>' attribute.
* @see #getStreetNumber()
* @generated
*/
void setStreetNumber(String value);
/**
* Returns the value of the '<em><b>City</b></em>' attribute. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>City</em>' attribute isn't clear, there really should be more of a
* description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>City</em>' attribute.
* @see #setCity(String)
* @see fleet.FleetPackage#getAddress_City()
* @model
* @generated
*/
String getCity();
/**
* Sets the value of the '{@link fleet.Address#getCity <em>City</em>}' attribute. <!--
* begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>City</em>' attribute.
* @see #getCity()
* @generated
*/
void setCity(String value);
/**
* Returns the value of the '<em><b>Country</b></em>' attribute. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Country</em>' attribute isn't clear, there really should be more of
* a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Country</em>' attribute.
* @see #setCountry(String)
* @see fleet.FleetPackage#getAddress_Country()
* @model
* @generated
*/
String getCountry();
/**
* Sets the value of the '{@link fleet.Address#getCountry <em>Country</em>}' attribute. <!--
* begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Country</em>' attribute.
* @see #getCountry()
* @generated
*/
void setCountry(String value);
} // Address