/** * generated by Xtext 2.12.0 */ package ca.mcgill.ecse.dslreasoner.vampireLanguage; /** * * A representation of the model object 'VLS And'. * * *

* The following features are supported: *

* * * @see ca.mcgill.ecse.dslreasoner.vampireLanguage.VampireLanguagePackage#getVLSAnd() * @model * @generated */ public interface VLSAnd extends VLSTerm { /** * Returns the value of the 'Left' containment reference. * *

* If the meaning of the 'Left' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Left' containment reference. * @see #setLeft(VLSTerm) * @see ca.mcgill.ecse.dslreasoner.vampireLanguage.VampireLanguagePackage#getVLSAnd_Left() * @model containment="true" * @generated */ VLSTerm getLeft(); /** * Sets the value of the '{@link ca.mcgill.ecse.dslreasoner.vampireLanguage.VLSAnd#getLeft Left}' containment reference. * * * @param value the new value of the 'Left' containment reference. * @see #getLeft() * @generated */ void setLeft(VLSTerm value); /** * Returns the value of the 'Right' containment reference. * *

* If the meaning of the 'Right' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Right' containment reference. * @see #setRight(VLSTerm) * @see ca.mcgill.ecse.dslreasoner.vampireLanguage.VampireLanguagePackage#getVLSAnd_Right() * @model containment="true" * @generated */ VLSTerm getRight(); /** * Sets the value of the '{@link ca.mcgill.ecse.dslreasoner.vampireLanguage.VLSAnd#getRight Right}' containment reference. * * * @param value the new value of the 'Right' containment reference. * @see #getRight() * @generated */ void setRight(VLSTerm value); } // VLSAnd