Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/alf09/src-gen/org/eclipse/papyrus/alf/alf/OperationCallExpression.java')
-rw-r--r--extraplugins/alf09/src-gen/org/eclipse/papyrus/alf/alf/OperationCallExpression.java108
1 files changed, 108 insertions, 0 deletions
diff --git a/extraplugins/alf09/src-gen/org/eclipse/papyrus/alf/alf/OperationCallExpression.java b/extraplugins/alf09/src-gen/org/eclipse/papyrus/alf/alf/OperationCallExpression.java
new file mode 100644
index 00000000000..c39c10d7719
--- /dev/null
+++ b/extraplugins/alf09/src-gen/org/eclipse/papyrus/alf/alf/OperationCallExpression.java
@@ -0,0 +1,108 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+
+ */
+package org.eclipse.papyrus.alf.alf;
+
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Operation Call Expression</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.papyrus.alf.alf.OperationCallExpression#getOperationName <em>Operation Name</em>}</li>
+ * <li>{@link org.eclipse.papyrus.alf.alf.OperationCallExpression#getTuple <em>Tuple</em>}</li>
+ * <li>{@link org.eclipse.papyrus.alf.alf.OperationCallExpression#getSuffix <em>Suffix</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.papyrus.alf.alf.AlfPackage#getOperationCallExpression()
+ * @model
+ * @generated
+ */
+public interface OperationCallExpression extends SuffixExpression
+{
+ /**
+ * Returns the value of the '<em><b>Operation Name</b></em>' attribute.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Operation Name</em>' attribute isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Operation Name</em>' attribute.
+ * @see #setOperationName(String)
+ * @see org.eclipse.papyrus.alf.alf.AlfPackage#getOperationCallExpression_OperationName()
+ * @model
+ * @generated
+ */
+ String getOperationName();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.alf.alf.OperationCallExpression#getOperationName <em>Operation Name</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Operation Name</em>' attribute.
+ * @see #getOperationName()
+ * @generated
+ */
+ void setOperationName(String value);
+
+ /**
+ * Returns the value of the '<em><b>Tuple</b></em>' containment reference.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Tuple</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>Tuple</em>' containment reference.
+ * @see #setTuple(Tuple)
+ * @see org.eclipse.papyrus.alf.alf.AlfPackage#getOperationCallExpression_Tuple()
+ * @model containment="true"
+ * @generated
+ */
+ Tuple getTuple();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.alf.alf.OperationCallExpression#getTuple <em>Tuple</em>}' containment reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Tuple</em>' containment reference.
+ * @see #getTuple()
+ * @generated
+ */
+ void setTuple(Tuple value);
+
+ /**
+ * Returns the value of the '<em><b>Suffix</b></em>' containment reference.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Suffix</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>Suffix</em>' containment reference.
+ * @see #setSuffix(SuffixExpression)
+ * @see org.eclipse.papyrus.alf.alf.AlfPackage#getOperationCallExpression_Suffix()
+ * @model containment="true"
+ * @generated
+ */
+ SuffixExpression getSuffix();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.alf.alf.OperationCallExpression#getSuffix <em>Suffix</em>}' containment reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Suffix</em>' containment reference.
+ * @see #getSuffix()
+ * @generated
+ */
+ void setSuffix(SuffixExpression value);
+
+} // OperationCallExpression

Back to the top