/** */ package hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Aggregate Expression'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getAggregateExpression() * @model abstract="true" * @generated */ public interface AggregateExpression extends Term { /** * Returns the value of the 'Relation' reference. * *

* If the meaning of the 'Relation' reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Relation' reference. * @see #setRelation(Relation) * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getAggregateExpression_Relation() * @model * @generated */ Relation getRelation(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.AggregateExpression#getRelation Relation}' reference. * * * @param value the new value of the 'Relation' reference. * @see #getRelation() * @generated */ void setRelation(Relation value); /** * Returns the value of the 'Parameter Substitution' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.AggregatedParameterSubstitution}. * * * @return the value of the 'Parameter Substitution' containment reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getAggregateExpression_ParameterSubstitution() * @model containment="true" * @generated */ EList getParameterSubstitution(); /** * Returns the value of the 'Result Variable' reference. * * * @return the value of the 'Result Variable' reference. * @see #setResultVariable(Variable) * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getAggregateExpression_ResultVariable() * @model * @generated */ Variable getResultVariable(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.AggregateExpression#getResultVariable Result Variable}' reference. * * * @param value the new value of the 'Result Variable' reference. * @see #getResultVariable() * @generated */ void setResultVariable(Variable value); } // AggregateExpression