blob: 22f34071a78c99411e1625ba0a02f4cbb8dfa757 [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id: ManufacturingPlant.java,v 1.1 2008/04/17 11:33:39 mtaal Exp $
*/
package fleet;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc --> A representation of the model object '<em><b>Manufacturing Plant</b></em>
* '. <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link fleet.ManufacturingPlant#getId <em>Id</em>}</li>
* <li>{@link fleet.ManufacturingPlant#getName <em>Name</em>}</li>
* <li>{@link fleet.ManufacturingPlant#getAddress <em>Address</em>}</li>
* <li>{@link fleet.ManufacturingPlant#getTransportFleet <em>Transport Fleet</em>}</li>
* </ul>
* </p>
*
* @see fleet.FleetPackage#getManufacturingPlant()
* @model
* @generated
*/
public interface ManufacturingPlant 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#getManufacturingPlant_Id()
* @model
* @generated
*/
String getId();
/**
* Sets the value of the '{@link fleet.ManufacturingPlant#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>Name</b></em>' attribute. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>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>Name</em>' attribute.
* @see #setName(String)
* @see fleet.FleetPackage#getManufacturingPlant_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link fleet.ManufacturingPlant#getName <em>Name</em>}' attribute. <!--
* begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Name</em>' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the '<em><b>Address</b></em>' reference. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Address</em>' reference isn't clear, there really should be more of
* a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Address</em>' reference.
* @see #setAddress(Address)
* @see fleet.FleetPackage#getManufacturingPlant_Address()
* @model
* @generated
*/
Address getAddress();
/**
* Sets the value of the '{@link fleet.ManufacturingPlant#getAddress <em>Address</em>}' reference.
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Address</em>' reference.
* @see #getAddress()
* @generated
*/
void setAddress(Address value);
/**
* Returns the value of the '<em><b>Transport Fleet</b></em>' reference. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Transport Fleet</em>' reference isn't clear, there really should be
* more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Transport Fleet</em>' reference.
* @see #setTransportFleet(Fleet)
* @see fleet.FleetPackage#getManufacturingPlant_TransportFleet()
* @model
* @generated
*/
Fleet getTransportFleet();
/**
* Sets the value of the '{@link fleet.ManufacturingPlant#getTransportFleet
* <em>Transport Fleet</em>}' reference. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Transport Fleet</em>' reference.
* @see #getTransportFleet()
* @generated
*/
void setTransportFleet(Fleet value);
} // ManufacturingPlant