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

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage#getALSFunctionDefinition() * @model * @generated */ public interface ALSFunctionDefinition extends ALSDefinition { /** * Returns the value of the 'Type' containment reference. * *

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

* * @return the value of the 'Type' containment reference. * @see #setType(ALSTerm) * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage#getALSFunctionDefinition_Type() * @model containment="true" * @generated */ ALSTerm getType(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSFunctionDefinition#getType Type}' containment reference. * * * @param value the new value of the 'Type' containment reference. * @see #getType() * @generated */ void setType(ALSTerm value); } // ALSFunctionDefinition