/** * Copyright (c) 2007 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM - Initial API and implementation */ package org.eclipse.emf.test.models.ppo; import java.util.Date; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Purchase Order</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.emf.test.models.ppo.PurchaseOrder#getItems <em>Items</em>}</li> * <li>{@link org.eclipse.emf.test.models.ppo.PurchaseOrder#getComment <em>Comment</em>}</li> * <li>{@link org.eclipse.emf.test.models.ppo.PurchaseOrder#getOrderDate <em>Order Date</em>}</li> * <li>{@link org.eclipse.emf.test.models.ppo.PurchaseOrder#getBillTo <em>Bill To</em>}</li> * <li>{@link org.eclipse.emf.test.models.ppo.PurchaseOrder#getShipTo <em>Ship To</em>}</li> * </ul> * </p> * * @see org.eclipse.emf.test.models.ppo.PPOPackage#getPurchaseOrder() * @model * @generated */ public interface PurchaseOrder extends EObject { /** * Returns the value of the '<em><b>Items</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.emf.test.models.ppo.Item}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Items</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Items</em>' containment reference list. * @see org.eclipse.emf.test.models.ppo.PPOPackage#getPurchaseOrder_Items() * @model containment="true" lower="2" * @generated */ EList<Item> getItems(); /** * Returns the value of the '<em><b>Comment</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Comment</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Comment</em>' attribute. * @see #setComment(String) * @see org.eclipse.emf.test.models.ppo.PPOPackage#getPurchaseOrder_Comment() * @model * @generated */ String getComment(); /** * Sets the value of the '{@link org.eclipse.emf.test.models.ppo.PurchaseOrder#getComment <em>Comment</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Comment</em>' attribute. * @see #getComment() * @generated */ void setComment(String value); /** * Returns the value of the '<em><b>Order Date</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Order 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>Order Date</em>' attribute. * @see #setOrderDate(Date) * @see org.eclipse.emf.test.models.ppo.PPOPackage#getPurchaseOrder_OrderDate() * @model dataType="org.eclipse.emf.test.models.ppo.Date" * @generated */ Date getOrderDate(); /** * Sets the value of the '{@link org.eclipse.emf.test.models.ppo.PurchaseOrder#getOrderDate <em>Order Date</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Order Date</em>' attribute. * @see #getOrderDate() * @generated */ void setOrderDate(Date value); /** * Returns the value of the '<em><b>Bill To</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Bill To</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Bill To</em>' containment reference. * @see #setBillTo(USAddress) * @see org.eclipse.emf.test.models.ppo.PPOPackage#getPurchaseOrder_BillTo() * @model containment="true" required="true" * @generated */ USAddress getBillTo(); /** * Sets the value of the '{@link org.eclipse.emf.test.models.ppo.PurchaseOrder#getBillTo <em>Bill To</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Bill To</em>' containment reference. * @see #getBillTo() * @generated */ void setBillTo(USAddress value); /** * Returns the value of the '<em><b>Ship To</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Ship To</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Ship To</em>' containment reference. * @see #setShipTo(USAddress) * @see org.eclipse.emf.test.models.ppo.PPOPackage#getPurchaseOrder_ShipTo() * @model containment="true" required="true" * @generated */ USAddress getShipTo(); /** * Sets the value of the '{@link org.eclipse.emf.test.models.ppo.PurchaseOrder#getShipTo <em>Ship To</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Ship To</em>' containment reference. * @see #getShipTo() * @generated */ void setShipTo(USAddress value); } // PurchaseOrder