blob: d7fdc26aa31f22e421973c479c945076438770bd [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.reportdsl;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Table Aggregation</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.reportdsl.TableAggregation#getText <em>Text</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.reportdsl.TableAggregation#getAggregation <em>Aggregation</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.reportdsl.TableAggregation#getOnGroup <em>On Group</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getTableAggregation()
* @model
* @generated
*/
public interface TableAggregation extends TableValueElement {
/**
* Returns the value of the '<em><b>Text</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Text</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Text</em>' attribute.
* @see #setText(String)
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getTableAggregation_Text()
* @model unique="false"
* @generated
*/
String getText();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.reportdsl.TableAggregation#getText <em>Text</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Text</em>' attribute.
* @see #getText()
* @generated
*/
void setText(String value);
/**
* Returns the value of the '<em><b>Aggregation</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Aggregation</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>Aggregation</em>' containment reference.
* @see #setAggregation(TableBaseAggregation)
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getTableAggregation_Aggregation()
* @model containment="true"
* @generated
*/
TableBaseAggregation getAggregation();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.reportdsl.TableAggregation#getAggregation <em>Aggregation</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Aggregation</em>' containment reference.
* @see #getAggregation()
* @generated
*/
void setAggregation(TableBaseAggregation value);
/**
* Returns the value of the '<em><b>On Group</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>On Group</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>On Group</em>' reference.
* @see #setOnGroup(DatamartTableGroup)
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getTableAggregation_OnGroup()
* @model
* @generated
*/
DatamartTableGroup getOnGroup();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.reportdsl.TableAggregation#getOnGroup <em>On Group</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>On Group</em>' reference.
* @see #getOnGroup()
* @generated
*/
void setOnGroup(DatamartTableGroup value);
} // TableAggregation