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

* The following features are supported: *

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

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

* * @return the value of the 'Component' reference. * @see #setComponent(Variable) * @see hu.bme.mit.inf.dslreasoner.faulttree.components.cftLanguage.CftLanguagePackage#getEventReference_Component() * @model * @generated */ Variable getComponent(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.faulttree.components.cftLanguage.EventReference#getComponent Component}' reference. * * * @param value the new value of the 'Component' reference. * @see #getComponent() * @generated */ void setComponent(Variable value); /** * Returns the value of the 'Event' reference. * *

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

* * @return the value of the 'Event' reference. * @see #setEvent(EventDeclaration) * @see hu.bme.mit.inf.dslreasoner.faulttree.components.cftLanguage.CftLanguagePackage#getEventReference_Event() * @model * @generated */ EventDeclaration getEvent(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.faulttree.components.cftLanguage.EventReference#getEvent Event}' reference. * * * @param value the new value of the 'Event' reference. * @see #getEvent() * @generated */ void setEvent(EventDeclaration value); } // EventReference