/** */ package hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage; /** * * 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); } // AggregateExpression