/** */ package org.erlide.erlang; /** * <!-- begin-user-doc --> A representation of the model object ' * <em><b>Top Type</b></em>'. <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.erlide.erlang.TopType#getVar <em>Var</em>}</li> * <li>{@link org.erlide.erlang.TopType#getType <em>Type</em>}</li> * <li>{@link org.erlide.erlang.TopType#getLeftOperand <em>Left Operand</em>}</li> * <li>{@link org.erlide.erlang.TopType#getOp <em>Op</em>}</li> * <li>{@link org.erlide.erlang.TopType#getRightOperand <em>Right Operand</em>}</li> * </ul> * * @see org.erlide.erlang.ErlangPackage#getTopType() * @model * @generated */ public interface TopType extends Type100, Type200, Type300, Type400, Type { /** * Returns the value of the '<em><b>Var</b></em>' attribute. <!-- * begin-user-doc --> * <p> * If the meaning of the '<em>Var</em>' attribute isn't clear, there really * should be more of a description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Var</em>' attribute. * @see #setVar(String) * @see org.erlide.erlang.ErlangPackage#getTopType_Var() * @model * @generated */ String getVar(); /** * Sets the value of the '{@link org.erlide.erlang.TopType#getVar * <em>Var</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc --> * * @param value * the new value of the '<em>Var</em>' attribute. * @see #getVar() * @generated */ void setVar(String value); /** * Returns the value of the '<em><b>Type</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Type</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>Type</em>' containment reference. * @see #setType(Type100) * @see org.erlide.erlang.ErlangPackage#getTopType_Type() * @model containment="true" * @generated */ Type100 getType(); /** * Sets the value of the '{@link org.erlide.erlang.TopType#getType * <em>Type</em>}' containment reference. <!-- begin-user-doc --> <!-- * end-user-doc --> * * @param value * the new value of the '<em>Type</em>' containment reference. * @see #getType() * @generated */ void setType(Type100 value); /** * Returns the value of the '<em><b>Left Operand</b></em>' containment * reference. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Left Operand</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 Operand</em>' containment reference. * @see #setLeftOperand(Type200) * @see org.erlide.erlang.ErlangPackage#getTopType_LeftOperand() * @model containment="true" * @generated */ Type200 getLeftOperand(); /** * Sets the value of the '{@link org.erlide.erlang.TopType#getLeftOperand * <em>Left Operand</em>}' containment reference. <!-- begin-user-doc --> * <!-- end-user-doc --> * * @param value * the new value of the '<em>Left Operand</em>' containment * reference. * @see #getLeftOperand() * @generated */ void setLeftOperand(Type200 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.erlide.erlang.ErlangPackage#getTopType_Op() * @model * @generated */ String getOp(); /** * Sets the value of the '{@link org.erlide.erlang.TopType#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 Operand</b></em>' containment * reference. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Right Operand</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 Operand</em>' containment reference. * @see #setRightOperand(Type200) * @see org.erlide.erlang.ErlangPackage#getTopType_RightOperand() * @model containment="true" * @generated */ Type200 getRightOperand(); /** * Sets the value of the '{@link org.erlide.erlang.TopType#getRightOperand * <em>Right Operand</em>}' containment reference. <!-- begin-user-doc --> * <!-- end-user-doc --> * * @param value * the new value of the '<em>Right Operand</em>' containment * reference. * @see #getRightOperand() * @generated */ void setRightOperand(Type200 value); } // TopType