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/PositionalTupleExpressionList.java')
-rw-r--r--sandbox/Alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/PositionalTupleExpressionList.java43
1 files changed, 43 insertions, 0 deletions
diff --git a/sandbox/Alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/PositionalTupleExpressionList.java b/sandbox/Alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/PositionalTupleExpressionList.java
new file mode 100644
index 00000000000..8931befd38c
--- /dev/null
+++ b/sandbox/Alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/PositionalTupleExpressionList.java
@@ -0,0 +1,43 @@
+/**
+ */
+package org.eclipse.papyrus.alf.alf;
+
+import org.eclipse.emf.common.util.EList;
+
+import org.eclipse.emf.ecore.EObject;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Positional Tuple Expression List</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.papyrus.alf.alf.PositionalTupleExpressionList#getExpression <em>Expression</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.papyrus.alf.alf.AlfPackage#getPositionalTupleExpressionList()
+ * @model
+ * @generated
+ */
+public interface PositionalTupleExpressionList extends EObject
+{
+ /**
+ * Returns the value of the '<em><b>Expression</b></em>' containment reference list.
+ * The list contents are of type {@link org.eclipse.papyrus.alf.alf.Expression}.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Expression</em>' containment reference list isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Expression</em>' containment reference list.
+ * @see org.eclipse.papyrus.alf.alf.AlfPackage#getPositionalTupleExpressionList_Expression()
+ * @model containment="true"
+ * @generated
+ */
+ EList<Expression> getExpression();
+
+} // PositionalTupleExpressionList

Back to the top