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

* The following features are supported: *

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

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

* * @return the value of the 'Multiplicity' attribute. * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSMultiplicity * @see #setMultiplicity(ALSMultiplicity) * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage#getALSFieldDeclaration_Multiplicity() * @model * @generated */ ALSMultiplicity getMultiplicity(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSFieldDeclaration#getMultiplicity Multiplicity}' attribute. * * * @param value the new value of the 'Multiplicity' attribute. * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSMultiplicity * @see #getMultiplicity() * @generated */ void setMultiplicity(ALSMultiplicity value); /** * 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#getALSFieldDeclaration_Type() * @model containment="true" * @generated */ ALSTerm getType(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSFieldDeclaration#getType Type}' containment reference. * * * @param value the new value of the 'Type' containment reference. * @see #getType() * @generated */ void setType(ALSTerm value); } // ALSFieldDeclaration