/* * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, 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; /** * A representation of the model object 'Company'. * *

* The following features are supported: *

*

* * @see org.eclipse.emf.cdo.tests.model1.Model1Package#getCompany() * @model * @generated */ public interface Company extends Address { /** * Returns the value of the 'Categories' containment reference list. * The list contents are of type {@link org.eclipse.emf.cdo.tests.model1.Category}. * *

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

* * @return the value of the 'Categories' containment reference list. * @see org.eclipse.emf.cdo.tests.model1.Model1Package#getCompany_Categories() * @model containment="true" * @generated */ EList getCategories(); /** * Returns the value of the 'Suppliers' containment reference list. * The list contents are of type {@link org.eclipse.emf.cdo.tests.model1.Supplier}. * *

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

* * @return the value of the 'Suppliers' containment reference list. * @see org.eclipse.emf.cdo.tests.model1.Model1Package#getCompany_Suppliers() * @model containment="true" * @generated */ EList getSuppliers(); /** * Returns the value of the 'Purchase Orders' containment reference list. * The list contents are of type {@link org.eclipse.emf.cdo.tests.model1.PurchaseOrder}. * *

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

* * @return the value of the 'Purchase Orders' containment reference list. * @see org.eclipse.emf.cdo.tests.model1.Model1Package#getCompany_PurchaseOrders() * @model containment="true" * @generated */ EList getPurchaseOrders(); /** * Returns the value of the 'Customers' containment reference list. * The list contents are of type {@link org.eclipse.emf.cdo.tests.model1.Customer}. * *

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

* * @return the value of the 'Customers' containment reference list. * @see org.eclipse.emf.cdo.tests.model1.Model1Package#getCompany_Customers() * @model containment="true" * @generated */ EList getCustomers(); /** * Returns the value of the 'Sales Orders' containment reference list. * The list contents are of type {@link org.eclipse.emf.cdo.tests.model1.SalesOrder}. * *

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

* * @return the value of the 'Sales Orders' containment reference list. * @see org.eclipse.emf.cdo.tests.model1.Model1Package#getCompany_SalesOrders() * @model containment="true" * @generated */ EList getSalesOrders(); } // Company