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

* The following features are supported: *

*

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

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

* * @return the value of the 'Input' containment reference. * @see #setInput(SMTInput) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTDocument_Input() * @model containment="true" * @generated */ SMTInput getInput(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTDocument#getInput Input}' containment reference. * * * @param value the new value of the 'Input' containment reference. * @see #getInput() * @generated */ void setInput(SMTInput value); /** * Returns the value of the 'Output' containment reference. * *

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

* * @return the value of the 'Output' containment reference. * @see #setOutput(SMTOutput) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTDocument_Output() * @model containment="true" * @generated */ SMTOutput getOutput(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTDocument#getOutput Output}' containment reference. * * * @param value the new value of the 'Output' containment reference. * @see #getOutput() * @generated */ void setOutput(SMTOutput value); } // SMTDocument