blob: e8e74d2706d6a72ab3e467a88eedcefa06c57c14 [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;
import org.eclipse.osbp.xtext.cubedsl.CubeType;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Datamart Cube</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.datamartdsl.DatamartCube#isNonEmpty <em>Non Empty</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.datamartdsl.DatamartCube#getCubeRef <em>Cube Ref</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.datamartdsl.DatamartCube#getAxisslicer <em>Axisslicer</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartCube()
* @model
* @generated
*/
public interface DatamartCube extends DatamartSource {
/**
* Returns the value of the '<em><b>Non Empty</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Non Empty</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Non Empty</em>' attribute.
* @see #setNonEmpty(boolean)
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartCube_NonEmpty()
* @model unique="false"
* @generated
*/
boolean isNonEmpty();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datamartdsl.DatamartCube#isNonEmpty <em>Non Empty</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Non Empty</em>' attribute.
* @see #isNonEmpty()
* @generated
*/
void setNonEmpty(boolean value);
/**
* Returns the value of the '<em><b>Cube Ref</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Cube 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>Cube Ref</em>' reference.
* @see #setCubeRef(CubeType)
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartCube_CubeRef()
* @model
* @generated
*/
CubeType getCubeRef();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datamartdsl.DatamartCube#getCubeRef <em>Cube Ref</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Cube Ref</em>' reference.
* @see #getCubeRef()
* @generated
*/
void setCubeRef(CubeType value);
/**
* Returns the value of the '<em><b>Axisslicer</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.datamartdsl.DatamartCubeElement}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Axisslicer</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>Axisslicer</em>' containment reference list.
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartCube_Axisslicer()
* @model containment="true"
* @generated
*/
EList<DatamartCubeElement> getAxisslicer();
} // DatamartCube