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

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage#getALSDocument() * @model * @generated */ public interface ALSDocument extends EObject { /** * Returns the value of the 'Enum Declarations' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSEnumDeclaration}. * *

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

* * @return the value of the 'Enum Declarations' containment reference list. * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage#getALSDocument_EnumDeclarations() * @model containment="true" * @generated */ EList getEnumDeclarations(); /** * Returns the value of the 'Signature Bodies' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSSignatureBody}. * *

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

* * @return the value of the 'Signature Bodies' containment reference list. * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage#getALSDocument_SignatureBodies() * @model containment="true" * @generated */ EList getSignatureBodies(); /** * Returns the value of the 'Function Definitions' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSFunctionDefinition}. * *

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

* * @return the value of the 'Function Definitions' containment reference list. * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage#getALSDocument_FunctionDefinitions() * @model containment="true" * @generated */ EList getFunctionDefinitions(); /** * Returns the value of the 'Relation Definitions' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSRelationDefinition}. * *

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

* * @return the value of the 'Relation Definitions' containment reference list. * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage#getALSDocument_RelationDefinitions() * @model containment="true" * @generated */ EList getRelationDefinitions(); /** * Returns the value of the 'Fact Declarations' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSFactDeclaration}. * *

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

* * @return the value of the 'Fact Declarations' containment reference list. * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage#getALSDocument_FactDeclarations() * @model containment="true" * @generated */ EList getFactDeclarations(); /** * Returns the value of the 'Run Command' containment reference. * *

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

* * @return the value of the 'Run Command' containment reference. * @see #setRunCommand(ALSRunCommand) * @see hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage#getALSDocument_RunCommand() * @model containment="true" * @generated */ ALSRunCommand getRunCommand(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSDocument#getRunCommand Run Command}' containment reference. * * * @param value the new value of the 'Run Command' containment reference. * @see #getRunCommand() * @generated */ void setRunCommand(ALSRunCommand value); } // ALSDocument