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

* The following features are supported: *

* * * @see ca.mcgill.ecse.dslreasoner.standalone.test.fam.famPackage#getFunctionalInterface() * @model * @generated */ public interface FunctionalInterface extends EObject { /** * Returns the value of the 'Data' containment reference list. * The list contents are of type {@link ca.mcgill.ecse.dslreasoner.standalone.test.fam.FunctionalData}. * It is bidirectional and its opposite is '{@link ca.mcgill.ecse.dslreasoner.standalone.test.fam.FunctionalData#getInterface Interface}'. * *

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

* * @return the value of the 'Data' containment reference list. * @see ca.mcgill.ecse.dslreasoner.standalone.test.fam.famPackage#getFunctionalInterface_Data() * @see ca.mcgill.ecse.dslreasoner.standalone.test.fam.FunctionalData#getInterface * @model opposite="interface" containment="true" * @generated */ EList getData(); /** * Returns the value of the 'Element' container reference. * It is bidirectional and its opposite is '{@link ca.mcgill.ecse.dslreasoner.standalone.test.fam.FunctionalElement#getInterface Interface}'. * *

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

* * @return the value of the 'Element' container reference. * @see #setElement(FunctionalElement) * @see ca.mcgill.ecse.dslreasoner.standalone.test.fam.famPackage#getFunctionalInterface_Element() * @see ca.mcgill.ecse.dslreasoner.standalone.test.fam.FunctionalElement#getInterface * @model opposite="interface" transient="false" * @generated */ FunctionalElement getElement(); /** * Sets the value of the '{@link ca.mcgill.ecse.dslreasoner.standalone.test.fam.FunctionalInterface#getElement Element}' container reference. * * * @param value the new value of the 'Element' container reference. * @see #getElement() * @generated */ void setElement(FunctionalElement value); } // FunctionalInterface