/** */ package org.eclipse.viatra.solver.language.solverLanguage; /** * * A representation of the model object 'Conditional Expression'. * * *

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getConditionalExpression() * @model * @generated */ public interface ConditionalExpression extends Expression { /** * Returns the value of the 'Condition' containment reference. * * * @return the value of the 'Condition' containment reference. * @see #setCondition(Expression) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getConditionalExpression_Condition() * @model containment="true" * @generated */ Expression getCondition(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.ConditionalExpression#getCondition Condition}' containment reference. * * * @param value the new value of the 'Condition' containment reference. * @see #getCondition() * @generated */ void setCondition(Expression value); /** * Returns the value of the 'Then' containment reference. * * * @return the value of the 'Then' containment reference. * @see #setThen(Expression) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getConditionalExpression_Then() * @model containment="true" * @generated */ Expression getThen(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.ConditionalExpression#getThen Then}' containment reference. * * * @param value the new value of the 'Then' containment reference. * @see #getThen() * @generated */ void setThen(Expression value); /** * Returns the value of the 'Else' containment reference. * * * @return the value of the 'Else' containment reference. * @see #setElse(Expression) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getConditionalExpression_Else() * @model containment="true" * @generated */ Expression getElse(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.ConditionalExpression#getElse Else}' containment reference. * * * @param value the new value of the 'Else' containment reference. * @see #getElse() * @generated */ void setElse(Expression value); } // ConditionalExpression