Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/uml/alf/org.eclipse.papyrus.uml.alf/src-gen/org/eclipse/papyrus/uml/alf/alf/SuperInvocationExpression.java')
-rw-r--r--plugins/uml/alf/org.eclipse.papyrus.uml.alf/src-gen/org/eclipse/papyrus/uml/alf/alf/SuperInvocationExpression.java77
1 files changed, 77 insertions, 0 deletions
diff --git a/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src-gen/org/eclipse/papyrus/uml/alf/alf/SuperInvocationExpression.java b/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src-gen/org/eclipse/papyrus/uml/alf/alf/SuperInvocationExpression.java
new file mode 100644
index 00000000000..c5c1ccb91dd
--- /dev/null
+++ b/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src-gen/org/eclipse/papyrus/uml/alf/alf/SuperInvocationExpression.java
@@ -0,0 +1,77 @@
+/**
+ */
+package org.eclipse.papyrus.uml.alf.alf;
+
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Super Invocation Expression</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.papyrus.uml.alf.alf.SuperInvocationExpression#getTuple <em>Tuple</em>}</li>
+ * <li>{@link org.eclipse.papyrus.uml.alf.alf.SuperInvocationExpression#getOperationName <em>Operation Name</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.papyrus.uml.alf.alf.AlfPackage#getSuperInvocationExpression()
+ * @model
+ * @generated
+ */
+public interface SuperInvocationExpression extends ValueSpecification, NonLiteralValueSpecification
+{
+ /**
+ * 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.uml.alf.alf.AlfPackage#getSuperInvocationExpression_Tuple()
+ * @model containment="true"
+ * @generated
+ */
+ Tuple getTuple();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.uml.alf.alf.SuperInvocationExpression#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>Operation Name</b></em>' containment reference.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Operation Name</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>Operation Name</em>' containment reference.
+ * @see #setOperationName(QualifiedNameWithBinding)
+ * @see org.eclipse.papyrus.uml.alf.alf.AlfPackage#getSuperInvocationExpression_OperationName()
+ * @model containment="true"
+ * @generated
+ */
+ QualifiedNameWithBinding getOperationName();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.uml.alf.alf.SuperInvocationExpression#getOperationName <em>Operation Name</em>}' containment reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Operation Name</em>' containment reference.
+ * @see #getOperationName()
+ * @generated
+ */
+ void setOperationName(QualifiedNameWithBinding value);
+
+} // SuperInvocationExpression

Back to the top