blob: 606e44a862b16e1e4176f5d8246b06ba60166f2a [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;
import org.eclipse.osbp.xtext.cubedsl.CubeLevel;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Datamart Hierarchy Level Single</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.datamartdsl.DatamartHierarchyLevelSingle#isSorted <em>Sorted</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.datamartdsl.DatamartHierarchyLevelSingle#getLevelRef <em>Level Ref</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartHierarchyLevelSingle()
* @model
* @generated
*/
public interface DatamartHierarchyLevelSingle extends Expression, DatamartHierarchyLevel {
/**
* Returns the value of the '<em><b>Sorted</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Sorted</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Sorted</em>' attribute.
* @see #setSorted(boolean)
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartHierarchyLevelSingle_Sorted()
* @model unique="false"
* @generated
*/
boolean isSorted();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datamartdsl.DatamartHierarchyLevelSingle#isSorted <em>Sorted</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Sorted</em>' attribute.
* @see #isSorted()
* @generated
*/
void setSorted(boolean value);
/**
* Returns the value of the '<em><b>Level Ref</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Level Ref</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Level Ref</em>' reference.
* @see #setLevelRef(CubeLevel)
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartHierarchyLevelSingle_LevelRef()
* @model
* @generated
*/
CubeLevel getLevelRef();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datamartdsl.DatamartHierarchyLevelSingle#getLevelRef <em>Level Ref</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Level Ref</em>' reference.
* @see #getLevelRef()
* @generated
*/
void setLevelRef(CubeLevel value);
} // DatamartHierarchyLevelSingle