aboutsummaryrefslogtreecommitdiffstats
path: root/Domains/Examples/ModelGenExampleFAM_plugin/ecore-gen/functionalarchitecture/FunctionalData.java
diff options
context:
space:
mode:
Diffstat (limited to 'Domains/Examples/ModelGenExampleFAM_plugin/ecore-gen/functionalarchitecture/FunctionalData.java')
-rw-r--r--Domains/Examples/ModelGenExampleFAM_plugin/ecore-gen/functionalarchitecture/FunctionalData.java33
1 files changed, 30 insertions, 3 deletions
diff --git a/Domains/Examples/ModelGenExampleFAM_plugin/ecore-gen/functionalarchitecture/FunctionalData.java b/Domains/Examples/ModelGenExampleFAM_plugin/ecore-gen/functionalarchitecture/FunctionalData.java
index 39639f99..23b7b9a0 100644
--- a/Domains/Examples/ModelGenExampleFAM_plugin/ecore-gen/functionalarchitecture/FunctionalData.java
+++ b/Domains/Examples/ModelGenExampleFAM_plugin/ecore-gen/functionalarchitecture/FunctionalData.java
@@ -15,6 +15,7 @@ import org.eclipse.emf.ecore.EObject;
15 * <ul> 15 * <ul>
16 * <li>{@link functionalarchitecture.FunctionalData#getTerminator <em>Terminator</em>}</li> 16 * <li>{@link functionalarchitecture.FunctionalData#getTerminator <em>Terminator</em>}</li>
17 * <li>{@link functionalarchitecture.FunctionalData#getInterface <em>Interface</em>}</li> 17 * <li>{@link functionalarchitecture.FunctionalData#getInterface <em>Interface</em>}</li>
18 * <li>{@link functionalarchitecture.FunctionalData#getValue <em>Value</em>}</li>
18 * </ul> 19 * </ul>
19 * 20 *
20 * @see functionalarchitecture.FunctionalarchitecturePackage#getFunctionalData() 21 * @see functionalarchitecture.FunctionalarchitecturePackage#getFunctionalData()
@@ -60,13 +61,13 @@ public interface FunctionalData extends EObject {
60 * </p> 61 * </p>
61 * <!-- end-user-doc --> 62 * <!-- end-user-doc -->
62 * @return the value of the '<em>Interface</em>' container reference. 63 * @return the value of the '<em>Interface</em>' container reference.
63 * @see #setInterface(FunctionalInterface) 64 * @see #setInterface(functionalarchitecture.FunctionalInterface)
64 * @see functionalarchitecture.FunctionalarchitecturePackage#getFunctionalData_Interface() 65 * @see functionalarchitecture.FunctionalarchitecturePackage#getFunctionalData_Interface()
65 * @see functionalarchitecture.FunctionalInterface#getData 66 * @see functionalarchitecture.FunctionalInterface#getData
66 * @model opposite="data" transient="false" 67 * @model opposite="data" transient="false"
67 * @generated 68 * @generated
68 */ 69 */
69 FunctionalInterface getInterface(); 70 functionalarchitecture.FunctionalInterface getInterface();
70 71
71 /** 72 /**
72 * Sets the value of the '{@link functionalarchitecture.FunctionalData#getInterface <em>Interface</em>}' container reference. 73 * Sets the value of the '{@link functionalarchitecture.FunctionalData#getInterface <em>Interface</em>}' container reference.
@@ -76,6 +77,32 @@ public interface FunctionalData extends EObject {
76 * @see #getInterface() 77 * @see #getInterface()
77 * @generated 78 * @generated
78 */ 79 */
79 void setInterface(FunctionalInterface value); 80 void setInterface(functionalarchitecture.FunctionalInterface value);
81
82 /**
83 * Returns the value of the '<em><b>Value</b></em>' attribute.
84 * <!-- begin-user-doc -->
85 * <p>
86 * If the meaning of the '<em>Value</em>' attribute isn't clear,
87 * there really should be more of a description here...
88 * </p>
89 * <!-- end-user-doc -->
90 * @return the value of the '<em>Value</em>' attribute.
91 * @see #setValue(int)
92 * @see functionalarchitecture.FunctionalarchitecturePackage#getFunctionalData_Value()
93 * @model required="true"
94 * @generated
95 */
96 int getValue();
97
98 /**
99 * Sets the value of the '{@link functionalarchitecture.FunctionalData#getValue <em>Value</em>}' attribute.
100 * <!-- begin-user-doc -->
101 * <!-- end-user-doc -->
102 * @param value the new value of the '<em>Value</em>' attribute.
103 * @see #getValue()
104 * @generated
105 */
106 void setValue(int value);
80 107
81} // FunctionalData 108} // FunctionalData