blob: 3b2bdead94505e1fbd31d43f0c0d4c0431c83d24 [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.osbp.xtext.cubedsl.CubeMeasure;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Datamart Measure</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.datamartdsl.DatamartMeasure#isScaled <em>Scaled</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.datamartdsl.DatamartMeasure#getScale <em>Scale</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.datamartdsl.DatamartMeasure#getMeasureRef <em>Measure Ref</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartMeasure()
* @model
* @generated
*/
public interface DatamartMeasure extends Expression, DatamartElement {
/**
* Returns the value of the '<em><b>Scaled</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Scaled</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Scaled</em>' attribute.
* @see #setScaled(boolean)
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartMeasure_Scaled()
* @model unique="false"
* @generated
*/
boolean isScaled();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datamartdsl.DatamartMeasure#isScaled <em>Scaled</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Scaled</em>' attribute.
* @see #isScaled()
* @generated
*/
void setScaled(boolean value);
/**
* Returns the value of the '<em><b>Scale</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.osbp.xtext.datamartdsl.ValueScaleEnum}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Scale</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Scale</em>' attribute.
* @see org.eclipse.osbp.xtext.datamartdsl.ValueScaleEnum
* @see #setScale(ValueScaleEnum)
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartMeasure_Scale()
* @model unique="false"
* @generated
*/
ValueScaleEnum getScale();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datamartdsl.DatamartMeasure#getScale <em>Scale</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Scale</em>' attribute.
* @see org.eclipse.osbp.xtext.datamartdsl.ValueScaleEnum
* @see #getScale()
* @generated
*/
void setScale(ValueScaleEnum value);
/**
* Returns the value of the '<em><b>Measure Ref</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Measure 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>Measure Ref</em>' reference.
* @see #setMeasureRef(CubeMeasure)
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartMeasure_MeasureRef()
* @model
* @generated
*/
CubeMeasure getMeasureRef();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datamartdsl.DatamartMeasure#getMeasureRef <em>Measure Ref</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Measure Ref</em>' reference.
* @see #getMeasureRef()
* @generated
*/
void setMeasureRef(CubeMeasure value);
} // DatamartMeasure