Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/Alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/AdditiveExpression.java')
-rw-r--r--sandbox/Alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/AdditiveExpression.java78
1 files changed, 78 insertions, 0 deletions
diff --git a/sandbox/Alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/AdditiveExpression.java b/sandbox/Alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/AdditiveExpression.java
new file mode 100644
index 00000000000..65a39008c74
--- /dev/null
+++ b/sandbox/Alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/AdditiveExpression.java
@@ -0,0 +1,78 @@
+/**
+ */
+package org.eclipse.papyrus.alf.alf;
+
+import org.eclipse.emf.ecore.EObject;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Additive Expression</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.papyrus.alf.alf.AdditiveExpression#getUnaryExpression <em>Unary Expression</em>}</li>
+ * <li>{@link org.eclipse.papyrus.alf.alf.AdditiveExpression#getAdditiveExpressionCompletion <em>Additive Expression Completion</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.papyrus.alf.alf.AlfPackage#getAdditiveExpression()
+ * @model
+ * @generated
+ */
+public interface AdditiveExpression extends EObject
+{
+ /**
+ * Returns the value of the '<em><b>Unary Expression</b></em>' containment reference.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Unary Expression</em>' containment reference isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Unary Expression</em>' containment reference.
+ * @see #setUnaryExpression(UnaryExpression)
+ * @see org.eclipse.papyrus.alf.alf.AlfPackage#getAdditiveExpression_UnaryExpression()
+ * @model containment="true"
+ * @generated
+ */
+ UnaryExpression getUnaryExpression();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.alf.alf.AdditiveExpression#getUnaryExpression <em>Unary Expression</em>}' containment reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Unary Expression</em>' containment reference.
+ * @see #getUnaryExpression()
+ * @generated
+ */
+ void setUnaryExpression(UnaryExpression value);
+
+ /**
+ * Returns the value of the '<em><b>Additive Expression Completion</b></em>' containment reference.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Additive Expression Completion</em>' containment reference isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Additive Expression Completion</em>' containment reference.
+ * @see #setAdditiveExpressionCompletion(AdditiveExpressionCompletion)
+ * @see org.eclipse.papyrus.alf.alf.AlfPackage#getAdditiveExpression_AdditiveExpressionCompletion()
+ * @model containment="true"
+ * @generated
+ */
+ AdditiveExpressionCompletion getAdditiveExpressionCompletion();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.alf.alf.AdditiveExpression#getAdditiveExpressionCompletion <em>Additive Expression Completion</em>}' containment reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Additive Expression Completion</em>' containment reference.
+ * @see #getAdditiveExpressionCompletion()
+ * @generated
+ */
+ void setAdditiveExpressionCompletion(AdditiveExpressionCompletion value);
+
+} // AdditiveExpression

Back to the top