Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/Alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/EqualityExpression.java')
-rw-r--r--sandbox/Alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/EqualityExpression.java78
1 files changed, 0 insertions, 78 deletions
diff --git a/sandbox/Alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/EqualityExpression.java b/sandbox/Alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/EqualityExpression.java
deleted file mode 100644
index 430e06a9601..00000000000
--- a/sandbox/Alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/EqualityExpression.java
+++ /dev/null
@@ -1,78 +0,0 @@
-/**
- */
-package org.eclipse.papyrus.alf.alf;
-
-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#getUnaryExpression <em>Unary Expression</em>}</li>
- * <li>{@link org.eclipse.papyrus.alf.alf.EqualityExpression#getClassificationExpressionCompletion <em>Classification Expression Completion</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>Unary Expression</b></em>' containment reference.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Unary 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>Unary Expression</em>' containment reference.
- * @see #setUnaryExpression(UnaryExpression)
- * @see org.eclipse.papyrus.alf.alf.AlfPackage#getEqualityExpression_UnaryExpression()
- * @model containment="true"
- * @generated
- */
- UnaryExpression getUnaryExpression();
-
- /**
- * Sets the value of the '{@link org.eclipse.papyrus.alf.alf.EqualityExpression#getUnaryExpression <em>Unary Expression</em>}' containment reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Unary Expression</em>' containment reference.
- * @see #getUnaryExpression()
- * @generated
- */
- void setUnaryExpression(UnaryExpression value);
-
- /**
- * Returns the value of the '<em><b>Classification Expression Completion</b></em>' containment reference.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Classification Expression Completion</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>Classification Expression Completion</em>' containment reference.
- * @see #setClassificationExpressionCompletion(ClassificationExpressionCompletion)
- * @see org.eclipse.papyrus.alf.alf.AlfPackage#getEqualityExpression_ClassificationExpressionCompletion()
- * @model containment="true"
- * @generated
- */
- ClassificationExpressionCompletion getClassificationExpressionCompletion();
-
- /**
- * Sets the value of the '{@link org.eclipse.papyrus.alf.alf.EqualityExpression#getClassificationExpressionCompletion <em>Classification Expression Completion</em>}' containment reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Classification Expression Completion</em>' containment reference.
- * @see #getClassificationExpressionCompletion()
- * @generated
- */
- void setClassificationExpressionCompletion(ClassificationExpressionCompletion value);
-
-} // EqualityExpression

Back to the top