/** */ package hu.bme.mit.inf.dslreasoner.domains.cps; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Host Instance'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.domains.cps.CpsPackage#getHostInstance() * @model * @generated */ public interface HostInstance extends EObject { /** * Returns the value of the 'Type' container reference. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasoner.domains.cps.HostType#getInstances Instances}'. * *

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

* * @return the value of the 'Type' container reference. * @see #setType(HostType) * @see hu.bme.mit.inf.dslreasoner.domains.cps.CpsPackage#getHostInstance_Type() * @see hu.bme.mit.inf.dslreasoner.domains.cps.HostType#getInstances * @model opposite="instances" required="true" transient="false" * @generated */ HostType getType(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.domains.cps.HostInstance#getType Type}' container reference. * * * @param value the new value of the 'Type' container reference. * @see #getType() * @generated */ void setType(HostType value); /** * Returns the value of the 'Applications' reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.domains.cps.ApplicationInstance}. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasoner.domains.cps.ApplicationInstance#getAllocatedTo Allocated To}'. * *

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

* * @return the value of the 'Applications' reference list. * @see hu.bme.mit.inf.dslreasoner.domains.cps.CpsPackage#getHostInstance_Applications() * @see hu.bme.mit.inf.dslreasoner.domains.cps.ApplicationInstance#getAllocatedTo * @model opposite="allocatedTo" * @generated */ EList getApplications(); } // HostInstance