/* * Copyright (c) 2009, 2011, 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; /** * A representation of the model object 'Table'. *

* The following features are supported: *

*

* * @see org.gastro.inventory.InventoryPackage#getTable() * @model * @generated */ public interface Table extends Station { /** * Returns the value of the 'Seats' attribute. *

* If the meaning of the 'Seats' attribute isn't clear, there really should be more of a description here... *

* * * @return the value of the 'Seats' attribute. * @see #setSeats(int) * @see org.gastro.inventory.InventoryPackage#getTable_Seats() * @model * @generated */ int getSeats(); /** * Sets the value of the '{@link org.gastro.inventory.Table#getSeats Seats}' attribute. * * @param value * the new value of the 'Seats' attribute. * @see #getSeats() * @generated */ void setSeats(int value); /** * Returns the value of the 'Restaurant' container reference. It is bidirectional and its opposite is * '{@link org.gastro.inventory.Restaurant#getTables Tables}'. *

* 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#getTable_Restaurant() * @see org.gastro.inventory.Restaurant#getTables * @model opposite="tables" required="true" transient="false" * @generated */ Restaurant getRestaurant(); /** * Sets the value of the '{@link org.gastro.inventory.Table#getRestaurant Restaurant}' container reference. * * * @param value * the new value of the 'Restaurant' container reference. * @see #getRestaurant() * @generated */ void setRestaurant(Restaurant value); } // Table