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

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getAggregation() * @model * @generated */ public interface Aggregation extends AggregateExpression { /** * Returns the value of the 'Value' containment reference. * * * @return the value of the 'Value' containment reference. * @see #setValue(Expression) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getAggregation_Value() * @model containment="true" * @generated */ Expression getValue(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.Aggregation#getValue Value}' containment reference. * * * @param value the new value of the 'Value' containment reference. * @see #getValue() * @generated */ void setValue(Expression value); /** * Returns the value of the 'Op' reference. * * * @return the value of the 'Op' reference. * @see #setOp(Symbol) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getAggregation_Op() * @model * @generated */ Symbol getOp(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.Aggregation#getOp Op}' reference. * * * @param value the new value of the 'Op' reference. * @see #getOp() * @generated */ void setOp(Symbol value); } // Aggregation