/** */ package org.eclipse.viatra.solver.language.solverLanguage; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Aggregate Expression'. * * *

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getAggregateExpression() * @model abstract="true" * @generated */ public interface AggregateExpression extends Expression { /** * Returns the value of the 'Forall Variables' containment reference list. * The list contents are of type {@link org.eclipse.viatra.solver.language.solverLanguage.Variable}. * * * @return the value of the 'Forall Variables' containment reference list. * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getAggregateExpression_ForallVariables() * @model containment="true" transient="true" * @generated */ EList getForallVariables(); /** * 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#getAggregateExpression_Condition() * @model containment="true" * @generated */ Expression getCondition(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.AggregateExpression#getCondition Condition}' containment reference. * * * @param value the new value of the 'Condition' containment reference. * @see #getCondition() * @generated */ void setCondition(Expression value); } // AggregateExpression