/** */ package net.certware.argument.language.l; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Rule</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link net.certware.argument.language.l.Rule#getHead <em>Head</em>}</li> * <li>{@link net.certware.argument.language.l.Rule#getCondition <em>Condition</em>}</li> * <li>{@link net.certware.argument.language.l.Rule#getBody <em>Body</em>}</li> * </ul> * * @see net.certware.argument.language.l.LPackage#getRule() * @model * @generated */ public interface Rule extends Statement { /** * Returns the value of the '<em><b>Head</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Head</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>Head</em>' containment reference. * @see #setHead(Head) * @see net.certware.argument.language.l.LPackage#getRule_Head() * @model containment="true" * @generated */ Head getHead(); /** * Sets the value of the '{@link net.certware.argument.language.l.Rule#getHead <em>Head</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Head</em>' containment reference. * @see #getHead() * @generated */ void setHead(Head value); /** * Returns the value of the '<em><b>Condition</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Condition</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Condition</em>' attribute. * @see #setCondition(String) * @see net.certware.argument.language.l.LPackage#getRule_Condition() * @model * @generated */ String getCondition(); /** * Sets the value of the '{@link net.certware.argument.language.l.Rule#getCondition <em>Condition</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Condition</em>' attribute. * @see #getCondition() * @generated */ void setCondition(String value); /** * Returns the value of the '<em><b>Body</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Body</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>Body</em>' containment reference. * @see #setBody(Sentence) * @see net.certware.argument.language.l.LPackage#getRule_Body() * @model containment="true" * @generated */ Sentence getBody(); /** * Sets the value of the '{@link net.certware.argument.language.l.Rule#getBody <em>Body</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Body</em>' containment reference. * @see #getBody() * @generated */ void setBody(Sentence value); } // Rule