/** * <copyright> * </copyright> * * $Id$ */ package no.playtrd.v10.playtrd; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Inventory</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link no.playtrd.v10.playtrd.Inventory#getContainedItems <em>Contained Items</em>}</li> * </ul> * </p> * * @see no.playtrd.v10.playtrd.PlaytrdPackage#getInventory() * @model * @generated */ public interface Inventory extends EObject { /** * Returns the value of the '<em><b>Contained Items</b></em>' containment reference list. * The list contents are of type {@link no.playtrd.v10.playtrd.Item}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Contained Items</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Contained Items</em>' containment reference list. * @see no.playtrd.v10.playtrd.PlaytrdPackage#getInventory_ContainedItems() * @model containment="true" * @generated */ EList<Item> getContainedItems(); } // Inventory