From 2531cfb60d747c261a20201415728beb0e24ab9b Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Mon, 15 Apr 2019 16:23:19 +0200 Subject: Satellite constellation case study WIP --- .../src/functionalarchitecture/FunctionalData.java | 81 ++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 Tests/hu.bme.mit.inf.dslreasoner.application.FAMTest/src/functionalarchitecture/FunctionalData.java (limited to 'Tests/hu.bme.mit.inf.dslreasoner.application.FAMTest/src/functionalarchitecture/FunctionalData.java') diff --git a/Tests/hu.bme.mit.inf.dslreasoner.application.FAMTest/src/functionalarchitecture/FunctionalData.java b/Tests/hu.bme.mit.inf.dslreasoner.application.FAMTest/src/functionalarchitecture/FunctionalData.java new file mode 100644 index 00000000..2b985e23 --- /dev/null +++ b/Tests/hu.bme.mit.inf.dslreasoner.application.FAMTest/src/functionalarchitecture/FunctionalData.java @@ -0,0 +1,81 @@ +/** + */ +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(functionalarchitecture.FunctionalInterface) + * @see functionalarchitecture.FunctionalarchitecturePackage#getFunctionalData_Interface() + * @see functionalarchitecture.FunctionalInterface#getData + * @model opposite="data" transient="false" + * @generated + */ + functionalarchitecture.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(functionalarchitecture.FunctionalInterface value); + +} // FunctionalData -- cgit v1.2.3-54-g00ecf