/* * Copyright (c) 2007-2009, 2011-2013, 2015, 2019 Eike Stepper (Loehne, Germany) 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: * Eike Stepper - initial API and implementation */ package org.eclipse.emf.cdo.tests.model1; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * A representation of the model object 'Order'. * *

* The following features are supported: *

* * * @see org.eclipse.emf.cdo.tests.model1.Model1Package#getOrder() * @model abstract="true" * @generated */ public interface Order extends EObject { /** * Returns the value of the 'Order Details' containment reference list. * The list contents are of type {@link org.eclipse.emf.cdo.tests.model1.OrderDetail}. * It is bidirectional and its opposite is '{@link org.eclipse.emf.cdo.tests.model1.OrderDetail#getOrder Order}'. * *

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

* * @return the value of the 'Order Details' containment reference list. * @see org.eclipse.emf.cdo.tests.model1.Model1Package#getOrder_OrderDetails() * @see org.eclipse.emf.cdo.tests.model1.OrderDetail#getOrder * @model opposite="order" containment="true" resolveProxies="true" * @generated */ EList getOrderDetails(); } // Order