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/SequenceConstructionCompletion.java')
-rw-r--r--plugins/uml/alf/org.eclipse.papyrus.uml.alf/src-gen/org/eclipse/papyrus/uml/alf/alf/SequenceConstructionCompletion.java78
1 files changed, 78 insertions, 0 deletions
diff --git a/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src-gen/org/eclipse/papyrus/uml/alf/alf/SequenceConstructionCompletion.java b/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src-gen/org/eclipse/papyrus/uml/alf/alf/SequenceConstructionCompletion.java
new file mode 100644
index 00000000000..acda14bedcc
--- /dev/null
+++ b/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src-gen/org/eclipse/papyrus/uml/alf/alf/SequenceConstructionCompletion.java
@@ -0,0 +1,78 @@
+/**
+ */
+package org.eclipse.papyrus.uml.alf.alf;
+
+import org.eclipse.emf.ecore.EObject;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Sequence Construction Completion</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.papyrus.uml.alf.alf.SequenceConstructionCompletion#isMultiplicityIndicator <em>Multiplicity Indicator</em>}</li>
+ * <li>{@link org.eclipse.papyrus.uml.alf.alf.SequenceConstructionCompletion#getExpression <em>Expression</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.papyrus.uml.alf.alf.AlfPackage#getSequenceConstructionCompletion()
+ * @model
+ * @generated
+ */
+public interface SequenceConstructionCompletion extends EObject
+{
+ /**
+ * Returns the value of the '<em><b>Multiplicity Indicator</b></em>' attribute.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Multiplicity Indicator</em>' attribute isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Multiplicity Indicator</em>' attribute.
+ * @see #setMultiplicityIndicator(boolean)
+ * @see org.eclipse.papyrus.uml.alf.alf.AlfPackage#getSequenceConstructionCompletion_MultiplicityIndicator()
+ * @model
+ * @generated
+ */
+ boolean isMultiplicityIndicator();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.uml.alf.alf.SequenceConstructionCompletion#isMultiplicityIndicator <em>Multiplicity Indicator</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Multiplicity Indicator</em>' attribute.
+ * @see #isMultiplicityIndicator()
+ * @generated
+ */
+ void setMultiplicityIndicator(boolean value);
+
+ /**
+ * Returns the value of the '<em><b>Expression</b></em>' containment reference.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>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>Expression</em>' containment reference.
+ * @see #setExpression(SequenceConstructionExpression)
+ * @see org.eclipse.papyrus.uml.alf.alf.AlfPackage#getSequenceConstructionCompletion_Expression()
+ * @model containment="true"
+ * @generated
+ */
+ SequenceConstructionExpression getExpression();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.uml.alf.alf.SequenceConstructionCompletion#getExpression <em>Expression</em>}' containment reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Expression</em>' containment reference.
+ * @see #getExpression()
+ * @generated
+ */
+ void setExpression(SequenceConstructionExpression value);
+
+} // SequenceConstructionCompletion

Back to the top