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

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getInterval() * @model * @generated */ public interface Interval extends Expression { /** * Returns the value of the 'Lower Bound' containment reference. * * * @return the value of the 'Lower Bound' containment reference. * @see #setLowerBound(Expression) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getInterval_LowerBound() * @model containment="true" * @generated */ Expression getLowerBound(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.Interval#getLowerBound Lower Bound}' containment reference. * * * @param value the new value of the 'Lower Bound' containment reference. * @see #getLowerBound() * @generated */ void setLowerBound(Expression value); /** * Returns the value of the 'Upper Bound' containment reference. * * * @return the value of the 'Upper Bound' containment reference. * @see #setUpperBound(Expression) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getInterval_UpperBound() * @model containment="true" * @generated */ Expression getUpperBound(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.Interval#getUpperBound Upper Bound}' containment reference. * * * @param value the new value of the 'Upper Bound' containment reference. * @see #getUpperBound() * @generated */ void setUpperBound(Expression value); } // Interval