/* * 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 * * Initial Publication: * Eclipse Magazin - http://www.eclipse-magazin.de */ package org.gastro.inventory; import org.eclipse.emf.common.util.EList; /** * A representation of the model object 'Department'. *

* The following features are supported: *

*

* * @see org.gastro.inventory.InventoryPackage#getDepartment() * @model * @generated */ public interface Department extends Station { /** * Returns the value of the 'Recipes' containment reference list. The list contents are of type * {@link org.gastro.inventory.Recipe}. It is bidirectional and its opposite is ' * {@link org.gastro.inventory.Recipe#getDepartment Department}'. *

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

* * * @return the value of the 'Recipes' containment reference list. * @see org.gastro.inventory.InventoryPackage#getDepartment_Recipes() * @see org.gastro.inventory.Recipe#getDepartment * @model opposite="department" containment="true" * @generated */ EList getRecipes(); /** * Returns the value of the 'Restaurant' container reference. It is bidirectional and its opposite is * '{@link org.gastro.inventory.Restaurant#getDepartments Departments}'. *

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

* * * @return the value of the 'Restaurant' container reference. * @see #setRestaurant(Restaurant) * @see org.gastro.inventory.InventoryPackage#getDepartment_Restaurant() * @see org.gastro.inventory.Restaurant#getDepartments * @model opposite="departments" required="true" transient="false" * @generated */ Restaurant getRestaurant(); /** * Sets the value of the '{@link org.gastro.inventory.Department#getRestaurant Restaurant}' container * reference. * * @param value * the new value of the 'Restaurant' container reference. * @see #getRestaurant() * @generated */ void setRestaurant(Restaurant value); /** * Returns the value of the 'Employees' containment reference list. The list contents are of type * {@link org.gastro.inventory.Employee}. It is bidirectional and its opposite is ' * {@link org.gastro.inventory.Employee#getDepartment Department}'. *

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

* * * @return the value of the 'Employees' containment reference list. * @see org.gastro.inventory.InventoryPackage#getDepartment_Employees() * @see org.gastro.inventory.Employee#getDepartment * @model opposite="department" containment="true" * @generated */ EList getEmployees(); /** * Returns the value of the 'Stocks' containment reference list. The list contents are of type * {@link org.gastro.inventory.Stock}. It is bidirectional and its opposite is ' * {@link org.gastro.inventory.Stock#getDepartment Department}'. *

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

* * * @return the value of the 'Stocks' containment reference list. * @see org.gastro.inventory.InventoryPackage#getDepartment_Stocks() * @see org.gastro.inventory.Stock#getDepartment * @model opposite="department" containment="true" required="true" * @generated */ EList getStocks(); } // Department