/** * <copyright> * </copyright> * * $Id$ */ package tefkat.engine.runtime; import org.eclipse.emf.ecore.resource.Resource; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Container Extent</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link tefkat.engine.runtime.ContainerExtent#getResource <em>Resource</em>}</li> * </ul> * </p> * * @see tefkat.engine.runtime.RuntimePackage#getContainerExtent() * @model * @generated */ public interface ContainerExtent extends Extent { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String copyright = "Copyright michael lawley 2004"; /** * Returns the value of the '<em><b>Resource</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Resource</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Resource</em>' attribute. * @see #setResource(Resource) * @see tefkat.engine.runtime.RuntimePackage#getContainerExtent_Resource() * @model required="true" * @generated */ Resource getResource(); /** * Sets the value of the '{@link tefkat.engine.runtime.ContainerExtent#getResource <em>Resource</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Resource</em>' attribute. * @see #getResource() * @generated */ void setResource(Resource value); } // ContainerExtent