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/RelationalExpression.java')
-rw-r--r--plugins/uml/alf/org.eclipse.papyrus.uml.alf/src-gen/org/eclipse/papyrus/uml/alf/alf/RelationalExpression.java105
1 files changed, 0 insertions, 105 deletions
diff --git a/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src-gen/org/eclipse/papyrus/uml/alf/alf/RelationalExpression.java b/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src-gen/org/eclipse/papyrus/uml/alf/alf/RelationalExpression.java
deleted file mode 100644
index 990a25752ea..00000000000
--- a/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src-gen/org/eclipse/papyrus/uml/alf/alf/RelationalExpression.java
+++ /dev/null
@@ -1,105 +0,0 @@
-/**
- */
-package org.eclipse.papyrus.uml.alf.alf;
-
-import org.eclipse.emf.ecore.EObject;
-
-/**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Relational Expression</b></em>'.
- * <!-- end-user-doc -->
- *
- * <p>
- * The following features are supported:
- * <ul>
- * <li>{@link org.eclipse.papyrus.uml.alf.alf.RelationalExpression#getLeft <em>Left</em>}</li>
- * <li>{@link org.eclipse.papyrus.uml.alf.alf.RelationalExpression#getOp <em>Op</em>}</li>
- * <li>{@link org.eclipse.papyrus.uml.alf.alf.RelationalExpression#getRight <em>Right</em>}</li>
- * </ul>
- * </p>
- *
- * @see org.eclipse.papyrus.uml.alf.alf.AlfPackage#getRelationalExpression()
- * @model
- * @generated
- */
-public interface RelationalExpression extends EObject
-{
- /**
- * Returns the value of the '<em><b>Left</b></em>' containment reference.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Left</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>Left</em>' containment reference.
- * @see #setLeft(ShiftExpression)
- * @see org.eclipse.papyrus.uml.alf.alf.AlfPackage#getRelationalExpression_Left()
- * @model containment="true"
- * @generated
- */
- ShiftExpression getLeft();
-
- /**
- * Sets the value of the '{@link org.eclipse.papyrus.uml.alf.alf.RelationalExpression#getLeft <em>Left</em>}' containment reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Left</em>' containment reference.
- * @see #getLeft()
- * @generated
- */
- void setLeft(ShiftExpression value);
-
- /**
- * Returns the value of the '<em><b>Op</b></em>' attribute.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Op</em>' attribute 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.
- * @see #setOp(String)
- * @see org.eclipse.papyrus.uml.alf.alf.AlfPackage#getRelationalExpression_Op()
- * @model
- * @generated
- */
- String getOp();
-
- /**
- * Sets the value of the '{@link org.eclipse.papyrus.uml.alf.alf.RelationalExpression#getOp <em>Op</em>}' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Op</em>' attribute.
- * @see #getOp()
- * @generated
- */
- void setOp(String value);
-
- /**
- * Returns the value of the '<em><b>Right</b></em>' containment reference.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Right</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>Right</em>' containment reference.
- * @see #setRight(ShiftExpression)
- * @see org.eclipse.papyrus.uml.alf.alf.AlfPackage#getRelationalExpression_Right()
- * @model containment="true"
- * @generated
- */
- ShiftExpression getRight();
-
- /**
- * Sets the value of the '{@link org.eclipse.papyrus.uml.alf.alf.RelationalExpression#getRight <em>Right</em>}' containment reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Right</em>' containment reference.
- * @see #getRight()
- * @generated
- */
- void setRight(ShiftExpression value);
-
-} // RelationalExpression

Back to the top