/** */ package net.certware.evidence.hugin.netDSL; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Relational Exp</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.certware.evidence.hugin.netDSL.RelationalExp#getLeft <em>Left</em>}</li> * <li>{@link net.certware.evidence.hugin.netDSL.RelationalExp#getRight <em>Right</em>}</li> * </ul> * </p> * * @see net.certware.evidence.hugin.netDSL.NetDSLPackage#getRelationalExp() * @model * @generated */ public interface RelationalExp extends relationalExpression { /** * 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(additiveExpression) * @see net.certware.evidence.hugin.netDSL.NetDSLPackage#getRelationalExp_Left() * @model containment="true" * @generated */ additiveExpression getLeft(); /** * Sets the value of the '{@link net.certware.evidence.hugin.netDSL.RelationalExp#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(additiveExpression 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(relationalExpression) * @see net.certware.evidence.hugin.netDSL.NetDSLPackage#getRelationalExp_Right() * @model containment="true" * @generated */ relationalExpression getRight(); /** * Sets the value of the '{@link net.certware.evidence.hugin.netDSL.RelationalExp#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(relationalExpression value); } // RelationalExp