/** */ package net.certware.argument.language.l; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Built In Atom</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link net.certware.argument.language.l.BuiltInAtom#getLhs <em>Lhs</em>}</li> * <li>{@link net.certware.argument.language.l.BuiltInAtom#getOp <em>Op</em>}</li> * <li>{@link net.certware.argument.language.l.BuiltInAtom#getRhs <em>Rhs</em>}</li> * </ul> * * @see net.certware.argument.language.l.LPackage#getBuiltInAtom() * @model * @generated */ public interface BuiltInAtom extends Atom, BasicAtom { /** * Returns the value of the '<em><b>Lhs</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Lhs</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>Lhs</em>' containment reference. * @see #setLhs(BasicTerm) * @see net.certware.argument.language.l.LPackage#getBuiltInAtom_Lhs() * @model containment="true" * @generated */ BasicTerm getLhs(); /** * Sets the value of the '{@link net.certware.argument.language.l.BuiltInAtom#getLhs <em>Lhs</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Lhs</em>' containment reference. * @see #getLhs() * @generated */ void setLhs(BasicTerm 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 net.certware.argument.language.l.LPackage#getBuiltInAtom_Op() * @model * @generated */ String getOp(); /** * Sets the value of the '{@link net.certware.argument.language.l.BuiltInAtom#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>Rhs</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Rhs</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>Rhs</em>' containment reference. * @see #setRhs(BasicTerm) * @see net.certware.argument.language.l.LPackage#getBuiltInAtom_Rhs() * @model containment="true" * @generated */ BasicTerm getRhs(); /** * Sets the value of the '{@link net.certware.argument.language.l.BuiltInAtom#getRhs <em>Rhs</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Rhs</em>' containment reference. * @see #getRhs() * @generated */ void setRhs(BasicTerm value); } // BuiltInAtom