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

* The following features are supported: *

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

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

* * @return the value of the 'Requirement' reference. * @see #setRequirement(Requirement) * @see hu.bme.mit.inf.dslreasoner.domains.cps.CpsPackage#getApplicationInstance_Requirement() * @see hu.bme.mit.inf.dslreasoner.domains.cps.Requirement#getInstances * @model opposite="instances" * @generated */ Requirement getRequirement(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.domains.cps.ApplicationInstance#getRequirement Requirement}' reference. * * * @param value the new value of the 'Requirement' reference. * @see #getRequirement() * @generated */ void setRequirement(Requirement value); /** * Returns the value of the 'Type' container reference. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasoner.domains.cps.ApplicationType#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(ApplicationType) * @see hu.bme.mit.inf.dslreasoner.domains.cps.CpsPackage#getApplicationInstance_Type() * @see hu.bme.mit.inf.dslreasoner.domains.cps.ApplicationType#getInstances * @model opposite="instances" required="true" transient="false" * @generated */ ApplicationType getType(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.domains.cps.ApplicationInstance#getType Type}' container reference. * * * @param value the new value of the 'Type' container reference. * @see #getType() * @generated */ void setType(ApplicationType value); /** * Returns the value of the 'Allocated To' reference. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasoner.domains.cps.HostInstance#getApplications Applications}'. * *

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

* * @return the value of the 'Allocated To' reference. * @see #setAllocatedTo(HostInstance) * @see hu.bme.mit.inf.dslreasoner.domains.cps.CpsPackage#getApplicationInstance_AllocatedTo() * @see hu.bme.mit.inf.dslreasoner.domains.cps.HostInstance#getApplications * @model opposite="applications" required="true" * @generated */ HostInstance getAllocatedTo(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.domains.cps.ApplicationInstance#getAllocatedTo Allocated To}' reference. * * * @param value the new value of the 'Allocated To' reference. * @see #getAllocatedTo() * @generated */ void setAllocatedTo(HostInstance value); } // ApplicationInstance