/** * generated by Xtext 2.21.0 */ package org.eclipse.viatra.solver.language.solverLanguage; /** * * A representation of the model object 'If Else'. * * *

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getIfElse() * @model * @generated */ public interface IfElse 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#getIfElse_Condition() * @model containment="true" * @generated */ Expression getCondition(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.IfElse#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#getIfElse_Then() * @model containment="true" * @generated */ Expression getThen(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.IfElse#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#getIfElse_Else() * @model containment="true" * @generated */ Expression getElse(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.IfElse#getElse Else}' containment reference. * * * @param value the new value of the 'Else' containment reference. * @see #getElse() * @generated */ void setElse(Expression value); } // IfElse