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

* The following features are supported: *

*

* * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTInput() * @model * @generated */ public interface SMTInput extends EObject { /** * Returns the value of the 'Options' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTOption}. * *

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

* * @return the value of the 'Options' containment reference list. * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTInput_Options() * @model containment="true" * @generated */ EList getOptions(); /** * Returns the value of the 'Type Declarations' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTType}. * *

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

* * @return the value of the 'Type Declarations' containment reference list. * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTInput_TypeDeclarations() * @model containment="true" * @generated */ EList getTypeDeclarations(); /** * Returns the value of the 'Function Declarations' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTFunctionDeclaration}. * *

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

* * @return the value of the 'Function Declarations' containment reference list. * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTInput_FunctionDeclarations() * @model containment="true" * @generated */ EList getFunctionDeclarations(); /** * Returns the value of the 'Function Definition' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTFunctionDefinition}. * *

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

* * @return the value of the 'Function Definition' containment reference list. * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTInput_FunctionDefinition() * @model containment="true" * @generated */ EList getFunctionDefinition(); /** * Returns the value of the 'Assertions' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTAssertion}. * *

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

* * @return the value of the 'Assertions' containment reference list. * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTInput_Assertions() * @model containment="true" * @generated */ EList getAssertions(); /** * Returns the value of the 'Sat Command' containment reference. * *

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

* * @return the value of the 'Sat Command' containment reference. * @see #setSatCommand(SMTSatCommand) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTInput_SatCommand() * @model containment="true" * @generated */ SMTSatCommand getSatCommand(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTInput#getSatCommand Sat Command}' containment reference. * * * @param value the new value of the 'Sat Command' containment reference. * @see #getSatCommand() * @generated */ void setSatCommand(SMTSatCommand value); /** * Returns the value of the 'Get Model Command' containment reference. * *

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

* * @return the value of the 'Get Model Command' containment reference. * @see #setGetModelCommand(SMTGetModelCommand) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTInput_GetModelCommand() * @model containment="true" * @generated */ SMTGetModelCommand getGetModelCommand(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTInput#getGetModelCommand Get Model Command}' containment reference. * * * @param value the new value of the 'Get Model Command' containment reference. * @see #getGetModelCommand() * @generated */ void setGetModelCommand(SMTGetModelCommand value); } // SMTInput