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

* The following features are supported: *

* * * @see functionalarchitecture.FunctionalarchitecturePackage#getFunctionalData() * @model abstract="true" * @generated */ public interface FunctionalData extends EObject { /** * Returns the value of the 'Terminator' containment reference. * It is bidirectional and its opposite is '{@link functionalarchitecture.FAMTerminator#getData Data}'. * *

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

* * @return the value of the 'Terminator' containment reference. * @see #setTerminator(FAMTerminator) * @see functionalarchitecture.FunctionalarchitecturePackage#getFunctionalData_Terminator() * @see functionalarchitecture.FAMTerminator#getData * @model opposite="data" containment="true" * @generated */ FAMTerminator getTerminator(); /** * Sets the value of the '{@link functionalarchitecture.FunctionalData#getTerminator Terminator}' containment reference. * * * @param value the new value of the 'Terminator' containment reference. * @see #getTerminator() * @generated */ void setTerminator(FAMTerminator value); /** * Returns the value of the 'Interface' container reference. * It is bidirectional and its opposite is '{@link functionalarchitecture.FunctionalInterface#getData Data}'. * *

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

* * @return the value of the 'Interface' container reference. * @see #setInterface(FunctionalInterface) * @see functionalarchitecture.FunctionalarchitecturePackage#getFunctionalData_Interface() * @see functionalarchitecture.FunctionalInterface#getData * @model opposite="data" transient="false" * @generated */ FunctionalInterface getInterface(); /** * Sets the value of the '{@link functionalarchitecture.FunctionalData#getInterface Interface}' container reference. * * * @param value the new value of the 'Interface' container reference. * @see #getInterface() * @generated */ void setInterface(FunctionalInterface value); } // FunctionalData