Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/alf09/src-gen/org/eclipse/papyrus/alf/alf/EqualityExpression.java')
-rw-r--r--extraplugins/alf09/src-gen/org/eclipse/papyrus/alf/alf/EqualityExpression.java64
1 files changed, 64 insertions, 0 deletions
diff --git a/extraplugins/alf09/src-gen/org/eclipse/papyrus/alf/alf/EqualityExpression.java b/extraplugins/alf09/src-gen/org/eclipse/papyrus/alf/alf/EqualityExpression.java
new file mode 100644
index 00000000000..5cdf94b4f00
--- /dev/null
+++ b/extraplugins/alf09/src-gen/org/eclipse/papyrus/alf/alf/EqualityExpression.java
@@ -0,0 +1,64 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+
+ */
+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>Equality Expression</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.papyrus.alf.alf.EqualityExpression#getExp <em>Exp</em>}</li>
+ * <li>{@link org.eclipse.papyrus.alf.alf.EqualityExpression#getOp <em>Op</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.papyrus.alf.alf.AlfPackage#getEqualityExpression()
+ * @model
+ * @generated
+ */
+public interface EqualityExpression extends EObject
+{
+ /**
+ * Returns the value of the '<em><b>Exp</b></em>' containment reference list.
+ * The list contents are of type {@link org.eclipse.papyrus.alf.alf.ClassificationExpression}.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Exp</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>Exp</em>' containment reference list.
+ * @see org.eclipse.papyrus.alf.alf.AlfPackage#getEqualityExpression_Exp()
+ * @model containment="true"
+ * @generated
+ */
+ EList<ClassificationExpression> getExp();
+
+ /**
+ * Returns the value of the '<em><b>Op</b></em>' attribute list.
+ * The list contents are of type {@link java.lang.String}.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Op</em>' attribute list isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Op</em>' attribute list.
+ * @see org.eclipse.papyrus.alf.alf.AlfPackage#getEqualityExpression_Op()
+ * @model unique="false"
+ * @generated
+ */
+ EList<String> getOp();
+
+} // EqualityExpression

Back to the top