/** */ package functionalarchitecture; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Function'. * * *

* The following features are supported: *

* * * @see functionalarchitecture.FunctionalarchitecturePackage#getFunction() * @model * @generated */ public interface Function extends FunctionalElement { /** * Returns the value of the 'Sub Elements' containment reference list. * The list contents are of type {@link functionalarchitecture.FunctionalElement}. * It is bidirectional and its opposite is '{@link functionalarchitecture.FunctionalElement#getParent Parent}'. * *

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

* * @return the value of the 'Sub Elements' containment reference list. * @see functionalarchitecture.FunctionalarchitecturePackage#getFunction_SubElements() * @see functionalarchitecture.FunctionalElement#getParent * @model opposite="parent" containment="true" * @generated */ EList getSubElements(); /** * Returns the value of the 'Type' attribute. * The literals are from the enumeration {@link functionalarchitecture.FunctionType}. * *

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

* * @return the value of the 'Type' attribute. * @see functionalarchitecture.FunctionType * @see functionalarchitecture.FunctionalarchitecturePackage#getFunction_Type() * @model required="true" transient="true" changeable="false" volatile="true" derived="true" * annotation="org.eclipse.viatra.query.querybasedfeature patternFQN='hu.bme.mit.inf.dslreasoner.domains.transima.fam.type'" * @generated */ FunctionType getType(); } // Function