/** * 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.order; import java.util.List; import javax.xml.datatype.XMLGregorianCalendar; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Order</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * Describes a movie order which includes date and the list of movies * <!-- end-model-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.eclipse.emf.test.models.order.Order#getDateRequested <em>Date Requested</em>}</li> * <li>{@link org.eclipse.emf.test.models.order.Order#getLastUpdated <em>Last Updated</em>}</li> * <li>{@link org.eclipse.emf.test.models.order.Order#getMovies <em>Movies</em>}</li> * </ul> * * @see org.eclipse.emf.test.models.order.OrderPackage#getOrder() * @model extendedMetaData="name='order' kind='elementOnly'" * @generated */ public interface Order extends EObject { /** * Returns the value of the '<em><b>Date Requested</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Date Requested</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Date Requested</em>' attribute. * @see #setDateRequested(XMLGregorianCalendar) * @see org.eclipse.emf.test.models.order.OrderPackage#getOrder_DateRequested() * @model dataType="org.eclipse.emf.ecore.xml.type.Date" * extendedMetaData="kind='element' name='dateRequested'" * @generated */ XMLGregorianCalendar getDateRequested(); /** * Sets the value of the '{@link org.eclipse.emf.test.models.order.Order#getDateRequested <em>Date Requested</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Date Requested</em>' attribute. * @see #getDateRequested() * @generated */ void setDateRequested(XMLGregorianCalendar value); /** * Returns the value of the '<em><b>Last Updated</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Last Updated</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Last Updated</em>' attribute. * @see #setLastUpdated(XMLGregorianCalendar) * @see org.eclipse.emf.test.models.order.OrderPackage#getOrder_LastUpdated() * @model dataType="org.eclipse.emf.ecore.xml.type.Date" * extendedMetaData="kind='element' name='lastUpdated'" * @generated */ XMLGregorianCalendar getLastUpdated(); /** * Sets the value of the '{@link org.eclipse.emf.test.models.order.Order#getLastUpdated <em>Last Updated</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Last Updated</em>' attribute. * @see #getLastUpdated() * @generated */ void setLastUpdated(XMLGregorianCalendar value); /** * Returns the value of the '<em><b>Movies</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Movies</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Movies</em>' attribute. * @see #setMovies(List) * @see org.eclipse.emf.test.models.order.OrderPackage#getOrder_Movies() * @model dataType="org.eclipse.emf.ecore.xml.type.IDREFS" required="true" many="false" * extendedMetaData="kind='element' name='movies'" * @generated */ List<String> getMovies(); /** * Sets the value of the '{@link org.eclipse.emf.test.models.order.Order#getMovies <em>Movies</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Movies</em>' attribute. * @see #getMovies() * @generated */ void setMovies(List<String> value); } // Order