All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openxma.dsl.dom.model.AggregateFunction Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
/**
 * 
 * 
 *
 * $Id$
 */
package org.openxma.dsl.dom.model;


/**
 * 
 * A representation of the model object 'Aggregate Function'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.openxma.dsl.dom.model.AggregateFunction#getFunction Function}
  • *
  • {@link org.openxma.dsl.dom.model.AggregateFunction#getAggregateExpression Aggregate Expression}
  • *
  • {@link org.openxma.dsl.dom.model.AggregateFunction#isAll All}
  • *
  • {@link org.openxma.dsl.dom.model.AggregateFunction#isDistinct Distinct}
  • *
  • {@link org.openxma.dsl.dom.model.AggregateFunction#getFrom From}
  • *
  • {@link org.openxma.dsl.dom.model.AggregateFunction#getCollection Collection}
  • *
*

* * @see org.openxma.dsl.dom.DomPackage#getAggregateFunction() * @model * @generated */ public interface AggregateFunction extends Expression { /** * Returns the value of the 'Function' attribute. * *

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

* * @return the value of the 'Function' attribute. * @see #setFunction(String) * @see org.openxma.dsl.dom.DomPackage#getAggregateFunction_Function() * @model * @generated */ String getFunction(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.AggregateFunction#getFunction Function}' attribute. * * * @param value the new value of the 'Function' attribute. * @see #getFunction() * @generated */ void setFunction(String value); /** * Returns the value of the 'Aggregate Expression' containment reference. * *

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

* * @return the value of the 'Aggregate Expression' containment reference. * @see #setAggregateExpression(Expression) * @see org.openxma.dsl.dom.DomPackage#getAggregateFunction_AggregateExpression() * @model containment="true" * @generated */ Expression getAggregateExpression(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.AggregateFunction#getAggregateExpression Aggregate Expression}' containment reference. * * * @param value the new value of the 'Aggregate Expression' containment reference. * @see #getAggregateExpression() * @generated */ void setAggregateExpression(Expression value); /** * Returns the value of the 'All' attribute. * *

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

* * @return the value of the 'All' attribute. * @see #setAll(boolean) * @see org.openxma.dsl.dom.DomPackage#getAggregateFunction_All() * @model * @generated */ boolean isAll(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.AggregateFunction#isAll All}' attribute. * * * @param value the new value of the 'All' attribute. * @see #isAll() * @generated */ void setAll(boolean value); /** * Returns the value of the 'Distinct' attribute. * *

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

* * @return the value of the 'Distinct' attribute. * @see #setDistinct(boolean) * @see org.openxma.dsl.dom.DomPackage#getAggregateFunction_Distinct() * @model * @generated */ boolean isDistinct(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.AggregateFunction#isDistinct Distinct}' attribute. * * * @param value the new value of the 'Distinct' attribute. * @see #isDistinct() * @generated */ void setDistinct(boolean value); /** * Returns the value of the 'From' attribute. * *

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

* * @return the value of the 'From' attribute. * @see #setFrom(String) * @see org.openxma.dsl.dom.DomPackage#getAggregateFunction_From() * @model * @generated */ String getFrom(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.AggregateFunction#getFrom From}' attribute. * * * @param value the new value of the 'From' attribute. * @see #getFrom() * @generated */ void setFrom(String value); /** * Returns the value of the 'Collection' containment reference. * *

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

* * @return the value of the 'Collection' containment reference. * @see #setCollection(CollectionFunction) * @see org.openxma.dsl.dom.DomPackage#getAggregateFunction_Collection() * @model containment="true" * @generated */ CollectionFunction getCollection(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.AggregateFunction#getCollection Collection}' containment reference. * * * @param value the new value of the 'Collection' containment reference. * @see #getCollection() * @generated */ void setCollection(CollectionFunction value); } // AggregateFunction




© 2015 - 2024 Weber Informatics LLC | Privacy Policy