/** */ package hu.bme.mit.inf.dslreasoner.alloyLanguage; /** * * A representation of the model object 'ALS Sig Scope'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage#getALSSigScope() * @model * @generated */ public interface ALSSigScope extends ALSTypeScope { /** * Returns the value of the 'Exactly' attribute. * *

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

* * @return the value of the 'Exactly' attribute. * @see #setExactly(boolean) * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage#getALSSigScope_Exactly() * @model * @generated */ boolean isExactly(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSSigScope#isExactly Exactly}' attribute. * * * @param value the new value of the 'Exactly' attribute. * @see #isExactly() * @generated */ void setExactly(boolean value); /** * Returns the value of the 'Type' reference. * *

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

* * @return the value of the 'Type' reference. * @see #setType(ALSSignatureDeclaration) * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage#getALSSigScope_Type() * @model * @generated */ ALSSignatureDeclaration getType(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSSigScope#getType Type}' reference. * * * @param value the new value of the 'Type' reference. * @see #getType() * @generated */ void setType(ALSSignatureDeclaration value); } // ALSSigScope