/** */ package hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage; /** * * A representation of the model object 'Projected Aggregate Expression'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getProjectedAggregateExpression() * @model abstract="true" * @generated */ public interface ProjectedAggregateExpression extends AggregateExpression { /** * Returns the value of the 'Projection Index' attribute. * The default value is "-1". * *

* If the meaning of the 'Projection Index' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Projection Index' attribute. * @see #setProjectionIndex(int) * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getProjectedAggregateExpression_ProjectionIndex() * @model default="-1" required="true" * @generated */ int getProjectionIndex(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.ProjectedAggregateExpression#getProjectionIndex Projection Index}' attribute. * * * @param value the new value of the 'Projection Index' attribute. * @see #getProjectionIndex() * @generated */ void setProjectionIndex(int value); } // ProjectedAggregateExpression