/** */ package ca.mcgill.ecse.dslreasoner.standalone.test.fam; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Functional Data'. * * *

* The following features are supported: *

* * * @see ca.mcgill.ecse.dslreasoner.standalone.test.fam.famPackage#getFunctionalData() * @model abstract="true" * @generated */ public interface FunctionalData extends EObject { /** * Returns the value of the 'Terminator' containment reference. * It is bidirectional and its opposite is '{@link ca.mcgill.ecse.dslreasoner.standalone.test.fam.FAMTerminator#getData Data}'. * *

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

* * @return the value of the 'Terminator' containment reference. * @see #setTerminator(FAMTerminator) * @see ca.mcgill.ecse.dslreasoner.standalone.test.fam.famPackage#getFunctionalData_Terminator() * @see ca.mcgill.ecse.dslreasoner.standalone.test.fam.FAMTerminator#getData * @model opposite="data" containment="true" * @generated */ FAMTerminator getTerminator(); /** * Sets the value of the '{@link ca.mcgill.ecse.dslreasoner.standalone.test.fam.FunctionalData#getTerminator Terminator}' containment reference. * * * @param value the new value of the 'Terminator' containment reference. * @see #getTerminator() * @generated */ void setTerminator(FAMTerminator value); /** * Returns the value of the 'Interface' container reference. * It is bidirectional and its opposite is '{@link ca.mcgill.ecse.dslreasoner.standalone.test.fam.FunctionalInterface#getData Data}'. * *

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

* * @return the value of the 'Interface' container reference. * @see #setInterface(FunctionalInterface) * @see ca.mcgill.ecse.dslreasoner.standalone.test.fam.famPackage#getFunctionalData_Interface() * @see ca.mcgill.ecse.dslreasoner.standalone.test.fam.FunctionalInterface#getData * @model opposite="data" transient="false" * @generated */ FunctionalInterface getInterface(); /** * Sets the value of the '{@link ca.mcgill.ecse.dslreasoner.standalone.test.fam.FunctionalData#getInterface Interface}' container reference. * * * @param value the new value of the 'Interface' container reference. * @see #getInterface() * @generated */ void setInterface(FunctionalInterface value); } // FunctionalData