/** */ 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 'Requirement'. * * *

* The following features are supported: *

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

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

* * @return the value of the 'Request' container reference. * @see #setRequest(Request) * @see hu.bme.mit.inf.dslreasoner.domains.cps.CpsPackage#getRequirement_Request() * @see hu.bme.mit.inf.dslreasoner.domains.cps.Request#getRequirements * @model opposite="requirements" required="true" transient="false" * @generated */ Request getRequest(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.domains.cps.Requirement#getRequest Request}' container reference. * * * @param value the new value of the 'Request' container reference. * @see #getRequest() * @generated */ void setRequest(Request value); /** * Returns the value of the 'Count' attribute. * *

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

* * @return the value of the 'Count' attribute. * @see #setCount(int) * @see hu.bme.mit.inf.dslreasoner.domains.cps.CpsPackage#getRequirement_Count() * @model required="true" * @generated */ int getCount(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.domains.cps.Requirement#getCount Count}' attribute. * * * @param value the new value of the 'Count' attribute. * @see #getCount() * @generated */ void setCount(int value); /** * Returns the value of the 'Type' reference. * *

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

* * @return the value of the 'Type' reference. * @see #setType(ApplicationType) * @see hu.bme.mit.inf.dslreasoner.domains.cps.CpsPackage#getRequirement_Type() * @model * @generated */ ApplicationType getType(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.domains.cps.Requirement#getType Type}' reference. * * * @param value the new value of the 'Type' reference. * @see #getType() * @generated */ void setType(ApplicationType value); /** * Returns the value of the 'Instances' 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#getRequirement Requirement}'. * *

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

* * @return the value of the 'Instances' reference list. * @see hu.bme.mit.inf.dslreasoner.domains.cps.CpsPackage#getRequirement_Instances() * @see hu.bme.mit.inf.dslreasoner.domains.cps.ApplicationInstance#getRequirement * @model opposite="requirement" * @generated */ EList getInstances(); } // Requirement