/** */ package hu.bme.mit.inf.dslreasoner.alloyLanguage; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'ALS Sum'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage#getALSSum() * @model * @generated */ public interface ALSSum extends ALSTerm { /** * Returns the value of the 'Variables' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSVariableDeclaration}. * *

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

* * @return the value of the 'Variables' containment reference list. * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage#getALSSum_Variables() * @model containment="true" * @generated */ EList getVariables(); /** * Returns the value of the 'Expression' containment reference. * *

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

* * @return the value of the 'Expression' containment reference. * @see #setExpression(ALSTerm) * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage#getALSSum_Expression() * @model containment="true" * @generated */ ALSTerm getExpression(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSSum#getExpression Expression}' containment reference. * * * @param value the new value of the 'Expression' containment reference. * @see #getExpression() * @generated */ void setExpression(ALSTerm value); } // ALSSum