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

* The following features are supported: *

*

* * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTQuantifiedExpression() * @model * @generated */ public interface SMTQuantifiedExpression extends SMTTerm { /** * Returns the value of the 'Quantified Variables' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTSortedVariable}. * *

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

* * @return the value of the 'Quantified Variables' containment reference list. * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTQuantifiedExpression_QuantifiedVariables() * @model containment="true" * @generated */ EList getQuantifiedVariables(); /** * Returns the value of the 'Expression' containment reference. * *

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

* * @return the value of the 'Expression' containment reference. * @see #setExpression(SMTTerm) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTQuantifiedExpression_Expression() * @model containment="true" * @generated */ SMTTerm getExpression(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTQuantifiedExpression#getExpression Expression}' containment reference. * * * @param value the new value of the 'Expression' containment reference. * @see #getExpression() * @generated */ void setExpression(SMTTerm value); /** * Returns the value of the 'Pattern' containment reference. * *

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

* * @return the value of the 'Pattern' containment reference. * @see #setPattern(SMTTerm) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTQuantifiedExpression_Pattern() * @model containment="true" * @generated */ SMTTerm getPattern(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTQuantifiedExpression#getPattern Pattern}' containment reference. * * * @param value the new value of the 'Pattern' containment reference. * @see #getPattern() * @generated */ void setPattern(SMTTerm value); } // SMTQuantifiedExpression