blob: c2754c8dc7ee0f4914da229f0bb9425666157948 [file] [log] [blame]
/**
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Based on ideas from Xtext, Xtend, Xcore
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - Initial implementation
*
*/
package org.eclipse.osbp.xtext.datamartdsl;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Datamart Set Aggregation Function</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.osbp.xtext.datamartdsl.DatamartSetAggregationFunction#getAggregation <em>Aggregation</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.datamartdsl.DatamartSetAggregationFunction#getParameter <em>Parameter</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartSetAggregationFunction()
* @model
* @generated
*/
public interface DatamartSetAggregationFunction extends DatamartAggregationFunctionInterface {
/**
* Returns the value of the '<em><b>Aggregation</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.osbp.xtext.datamartdsl.SetAggregationEnum}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Aggregation</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Aggregation</em>' attribute.
* @see org.eclipse.osbp.xtext.datamartdsl.SetAggregationEnum
* @see #setAggregation(SetAggregationEnum)
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartSetAggregationFunction_Aggregation()
* @model unique="false"
* @generated
*/
SetAggregationEnum getAggregation();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datamartdsl.DatamartSetAggregationFunction#getAggregation <em>Aggregation</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Aggregation</em>' attribute.
* @see org.eclipse.osbp.xtext.datamartdsl.SetAggregationEnum
* @see #getAggregation()
* @generated
*/
void setAggregation(SetAggregationEnum value);
/**
* Returns the value of the '<em><b>Parameter</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Parameter</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Parameter</em>' containment reference.
* @see #setParameter(DatamartFunctionIntParameter)
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartSetAggregationFunction_Parameter()
* @model containment="true"
* @generated
*/
DatamartFunctionIntParameter getParameter();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datamartdsl.DatamartSetAggregationFunction#getParameter <em>Parameter</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Parameter</em>' containment reference.
* @see #getParameter()
* @generated
*/
void setParameter(DatamartFunctionIntParameter value);
} // DatamartSetAggregationFunction