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

* The following features are supported: *

*

* * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTOutput() * @model * @generated */ public interface SMTOutput extends EObject { /** * Returns the value of the 'Sat Result' containment reference. * *

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

* * @return the value of the 'Sat Result' containment reference. * @see #setSatResult(SMTResult) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTOutput_SatResult() * @model containment="true" * @generated */ SMTResult getSatResult(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTOutput#getSatResult Sat Result}' containment reference. * * * @param value the new value of the 'Sat Result' containment reference. * @see #getSatResult() * @generated */ void setSatResult(SMTResult value); /** * Returns the value of the 'Get Model Result' containment reference. * *

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

* * @return the value of the 'Get Model Result' containment reference. * @see #setGetModelResult(SMTResult) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTOutput_GetModelResult() * @model containment="true" * @generated */ SMTResult getGetModelResult(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTOutput#getGetModelResult Get Model Result}' containment reference. * * * @param value the new value of the 'Get Model Result' containment reference. * @see #getGetModelResult() * @generated */ void setGetModelResult(SMTResult value); /** * Returns the value of the 'Statistics' containment reference. * *

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

* * @return the value of the 'Statistics' containment reference. * @see #setStatistics(SMTStatisticsSection) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTOutput_Statistics() * @model containment="true" * @generated */ SMTStatisticsSection getStatistics(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTOutput#getStatistics Statistics}' containment reference. * * * @param value the new value of the 'Statistics' containment reference. * @see #getStatistics() * @generated */ void setStatistics(SMTStatisticsSection value); } // SMTOutput