blob: 8df0ae9431c7da628fea8bdeae40b416edb170d7 [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 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Based on ideas from Xtext, Xtend, Xcore
*
* Contributors:
* Joerg Riegel - Initial implementation
*
*/
package org.eclipse.osbp.xtext.datamartdsl;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Datamart Aggregation Function</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.datamartdsl.DatamartAggregationFunction#getAggregation <em>Aggregation</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.datamartdsl.DatamartAggregationFunction#getParameter <em>Parameter</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartAggregationFunction()
* @model
* @generated
*/
public interface DatamartAggregationFunction 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.AggregationEnum}.
* <!-- 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.AggregationEnum
* @see #setAggregation(AggregationEnum)
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartAggregationFunction_Aggregation()
* @model unique="false"
* @generated
*/
AggregationEnum getAggregation();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datamartdsl.DatamartAggregationFunction#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.AggregationEnum
* @see #getAggregation()
* @generated
*/
void setAggregation(AggregationEnum 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#getDatamartAggregationFunction_Parameter()
* @model containment="true"
* @generated
*/
DatamartFunctionIntParameter getParameter();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datamartdsl.DatamartAggregationFunction#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);
} // DatamartAggregationFunction