/** */ package hu.bme.mit.inf.dslreasomer.domains.transima.fam.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 hu.bme.mit.inf.dslreasomer.domains.transima.fam.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 hu.bme.mit.inf.dslreasomer.domains.transima.fam.FunctionalArchitecture.FunctionalData}. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasomer.domains.transima.fam.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 hu.bme.mit.inf.dslreasomer.domains.transima.fam.FunctionalArchitecture.FunctionalArchitecturePackage#getFunctionalInterface_Data() * @see hu.bme.mit.inf.dslreasomer.domains.transima.fam.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 hu.bme.mit.inf.dslreasomer.domains.transima.fam.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 hu.bme.mit.inf.dslreasomer.domains.transima.fam.FunctionalArchitecture.FunctionalArchitecturePackage#getFunctionalInterface_Element() * @see hu.bme.mit.inf.dslreasomer.domains.transima.fam.FunctionalArchitecture.FunctionalElement#getInterface * @model opposite="interface" transient="false" * @generated */ FunctionalElement getElement(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasomer.domains.transima.fam.FunctionalArchitecture.FunctionalInterface#getElement Element}' container reference. * * * @param value the new value of the 'Element' container reference. * @see #getElement() * @generated */ void setElement(FunctionalElement value); } // FunctionalInterface