/** */ package functionalarchitecture; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Functional Element'. * * *

* The following features are supported: *

* * * @see functionalarchitecture.FunctionalarchitecturePackage#getFunctionalElement() * @model abstract="true" * @generated */ public interface FunctionalElement extends EObject { /** * Returns the value of the 'Interface' containment reference. * It is bidirectional and its opposite is '{@link functionalarchitecture.FunctionalInterface#getElement Element}'. * *

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

* * @return the value of the 'Interface' containment reference. * @see #setInterface(functionalarchitecture.FunctionalInterface) * @see functionalarchitecture.FunctionalarchitecturePackage#getFunctionalElement_Interface() * @see functionalarchitecture.FunctionalInterface#getElement * @model opposite="element" containment="true" * @generated */ functionalarchitecture.FunctionalInterface getInterface(); /** * Sets the value of the '{@link functionalarchitecture.FunctionalElement#getInterface Interface}' containment reference. * * * @param value the new value of the 'Interface' containment reference. * @see #getInterface() * @generated */ void setInterface(functionalarchitecture.FunctionalInterface value); /** * Returns the value of the 'Model' reference. * *

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

* * @return the value of the 'Model' reference. * @see #setModel(FunctionalArchitectureModel) * @see functionalarchitecture.FunctionalarchitecturePackage#getFunctionalElement_Model() * @model required="true" transient="true" volatile="true" derived="true" * annotation="org.eclipse.viatra.query.querybasedfeature patternFQN='hu.bme.mit.inf.dslreasoner.domains.transima.fam.model'" * @generated */ FunctionalArchitectureModel getModel(); /** * Sets the value of the '{@link functionalarchitecture.FunctionalElement#getModel Model}' reference. * * * @param value the new value of the 'Model' reference. * @see #getModel() * @generated */ void setModel(FunctionalArchitectureModel value); /** * Returns the value of the 'Parent' container reference. * It is bidirectional and its opposite is '{@link functionalarchitecture.Function#getSubElements Sub Elements}'. * *

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

* * @return the value of the 'Parent' container reference. * @see #setParent(Function) * @see functionalarchitecture.FunctionalarchitecturePackage#getFunctionalElement_Parent() * @see functionalarchitecture.Function#getSubElements * @model opposite="subElements" transient="false" * @generated */ Function getParent(); /** * Sets the value of the '{@link functionalarchitecture.FunctionalElement#getParent Parent}' container reference. * * * @param value the new value of the 'Parent' container reference. * @see #getParent() * @generated */ void setParent(Function value); } // FunctionalElement