/** * * * * $Id: Customer.java,v 1.3 2007/02/08 23:09:20 mtaal Exp $ */ package org.eclipse.emf.teneo.samples.emf.sample.epo2; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Customer'. * * *

* The following features are supported: *

*

* * @see org.eclipse.emf.teneo.samples.emf.sample.epo2.EPO2Package#getCustomer() * @model * @generated */ public interface Customer extends EObject { /** * Returns the value of the 'Customer ID' attribute. * *

* If the meaning of the 'Customer ID' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Customer ID' attribute. * @see #setCustomerID(int) * @see org.eclipse.emf.teneo.samples.emf.sample.epo2.EPO2Package#getCustomer_CustomerID() * @model * @generated */ int getCustomerID(); /** * Sets the value of the '{@link org.eclipse.emf.teneo.samples.emf.sample.epo2.Customer#getCustomerID Customer ID}' attribute. * * * @param value the new value of the 'Customer ID' attribute. * @see #getCustomerID() * @generated */ void setCustomerID(int value); /** * Returns the value of the 'Orders' reference list. * The list contents are of type {@link org.eclipse.emf.teneo.samples.emf.sample.epo2.PurchaseOrder}. * It is bidirectional and its opposite is '{@link org.eclipse.emf.teneo.samples.emf.sample.epo2.PurchaseOrder#getCustomer Customer}'. * *

* If the meaning of the 'Orders' reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Orders' reference list. * @see org.eclipse.emf.teneo.samples.emf.sample.epo2.EPO2Package#getCustomer_Orders() * @see org.eclipse.emf.teneo.samples.emf.sample.epo2.PurchaseOrder#getCustomer * @model type="org.eclipse.emf.teneo.samples.emf.sample.epo2.PurchaseOrder" opposite="customer" resolveProxies="false" * @generated */ EList getOrders(); } // Customer