blob: 94d673618ec616c295c2963e57b9ffaea7a8cf01 [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:
* Joerg Riegel - Initial implementation
*
*/
package org.eclipse.osbp.xtext.datamartdsl;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Datamart Task</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.datamartdsl.DatamartTask#getTaskQuery <em>Task Query</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.datamartdsl.DatamartTask#getColumns <em>Columns</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.datamartdsl.DatamartTask#getConditions <em>Conditions</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartTask()
* @model
* @generated
*/
public interface DatamartTask extends DatamartSource {
/**
* Returns the value of the '<em><b>Task Query</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.osbp.xtext.datamartdsl.TaskQueryTopicEnum}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Task Query</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Task Query</em>' attribute.
* @see org.eclipse.osbp.xtext.datamartdsl.TaskQueryTopicEnum
* @see #setTaskQuery(TaskQueryTopicEnum)
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartTask_TaskQuery()
* @model unique="false"
* @generated
*/
TaskQueryTopicEnum getTaskQuery();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datamartdsl.DatamartTask#getTaskQuery <em>Task Query</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Task Query</em>' attribute.
* @see org.eclipse.osbp.xtext.datamartdsl.TaskQueryTopicEnum
* @see #getTaskQuery()
* @generated
*/
void setTaskQuery(TaskQueryTopicEnum value);
/**
* Returns the value of the '<em><b>Columns</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.datamartdsl.DatamartColumn}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Columns</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Columns</em>' containment reference list.
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartTask_Columns()
* @model containment="true"
* @generated
*/
EList<DatamartColumn> getColumns();
/**
* Returns the value of the '<em><b>Conditions</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.datamartdsl.DatamartCondition}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Conditions</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Conditions</em>' containment reference list.
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartTask_Conditions()
* @model containment="true"
* @generated
*/
EList<DatamartCondition> getConditions();
} // DatamartTask