/** */ package functionalarchitecture; 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 functionalarchitecture.FunctionalarchitecturePackage#getFunctionalInterface() * @model * @generated */ public interface FunctionalInterface extends EObject { /** * Returns the value of the 'Data' containment reference list. * The list contents are of type {@link functionalarchitecture.FunctionalData}. * It is bidirectional and its opposite is '{@link functionalarchitecture.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 functionalarchitecture.FunctionalarchitecturePackage#getFunctionalInterface_Data() * @see functionalarchitecture.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 functionalarchitecture.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 functionalarchitecture.FunctionalarchitecturePackage#getFunctionalInterface_Element() * @see functionalarchitecture.FunctionalElement#getInterface * @model opposite="interface" transient="false" * @generated */ FunctionalElement getElement(); /** * Sets the value of the '{@link functionalarchitecture.FunctionalInterface#getElement Element}' container reference. * * * @param value the new value of the 'Element' container reference. * @see #getElement() * @generated */ void setElement(FunctionalElement value); } // FunctionalInterface