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

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage#getALSQuantifiedEx() * @model * @generated */ public interface ALSQuantifiedEx extends ALSTerm { /** * Returns the value of the 'Type' attribute. * The literals are from the enumeration {@link hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSMultiplicity}. * *

* If the meaning of the 'Type' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Type' attribute. * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSMultiplicity * @see #setType(ALSMultiplicity) * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage#getALSQuantifiedEx_Type() * @model * @generated */ ALSMultiplicity getType(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSQuantifiedEx#getType Type}' attribute. * * * @param value the new value of the 'Type' attribute. * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSMultiplicity * @see #getType() * @generated */ void setType(ALSMultiplicity value); /** * Returns the value of the 'Disj' attribute. * *

* If the meaning of the 'Disj' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Disj' attribute. * @see #setDisj(boolean) * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage#getALSQuantifiedEx_Disj() * @model * @generated */ boolean isDisj(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSQuantifiedEx#isDisj Disj}' attribute. * * * @param value the new value of the 'Disj' attribute. * @see #isDisj() * @generated */ void setDisj(boolean value); /** * 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#getALSQuantifiedEx_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#getALSQuantifiedEx_Expression() * @model containment="true" * @generated */ ALSTerm getExpression(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSQuantifiedEx#getExpression Expression}' containment reference. * * * @param value the new value of the 'Expression' containment reference. * @see #getExpression() * @generated */ void setExpression(ALSTerm value); } // ALSQuantifiedEx