/** * generated by Xtext 2.16.0 */ package hu.bme.mit.inf.dslreasoner.faulttree.components.cftLanguage; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Assignment'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.faulttree.components.cftLanguage.CftLanguagePackage#getAssignment() * @model * @generated */ public interface Assignment extends EObject { /** * Returns the value of the 'Input' containment reference. * *

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

* * @return the value of the 'Input' containment reference. * @see #setInput(EventReference) * @see hu.bme.mit.inf.dslreasoner.faulttree.components.cftLanguage.CftLanguagePackage#getAssignment_Input() * @model containment="true" * @generated */ EventReference getInput(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.faulttree.components.cftLanguage.Assignment#getInput Input}' containment reference. * * * @param value the new value of the 'Input' containment reference. * @see #getInput() * @generated */ void setInput(EventReference value); /** * Returns the value of the 'Multiple' attribute. * *

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

* * @return the value of the 'Multiple' attribute. * @see #setMultiple(boolean) * @see hu.bme.mit.inf.dslreasoner.faulttree.components.cftLanguage.CftLanguagePackage#getAssignment_Multiple() * @model * @generated */ boolean isMultiple(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.faulttree.components.cftLanguage.Assignment#isMultiple Multiple}' attribute. * * * @param value the new value of the 'Multiple' attribute. * @see #isMultiple() * @generated */ void setMultiple(boolean value); /** * Returns the value of the 'Output' containment reference. * *

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

* * @return the value of the 'Output' containment reference. * @see #setOutput(EventReference) * @see hu.bme.mit.inf.dslreasoner.faulttree.components.cftLanguage.CftLanguagePackage#getAssignment_Output() * @model containment="true" * @generated */ EventReference getOutput(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.faulttree.components.cftLanguage.Assignment#getOutput Output}' containment reference. * * * @param value the new value of the 'Output' containment reference. * @see #getOutput() * @generated */ void setOutput(EventReference value); } // Assignment