Skip to main content
summaryrefslogblamecommitdiffstats
blob: 60997e5c880b25a7fed004fcb8690f5054fd498c (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                          
                                                      












                                                                        
       


                                                                                              
































                                                                                                                              
/**
 * 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.table;

import org.eclipse.osbp.xtext.datamartdsl.DatamartMeasure;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Table Measure</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link org.eclipse.osbp.xtext.table.TableMeasure#getValueRef <em>Value Ref</em>}</li>
 * </ul>
 *
 * @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTableMeasure()
 * @model
 * @generated
 */
public interface TableMeasure extends Expression, TableValueElement {
	/**
	 * Returns the value of the '<em><b>Value Ref</b></em>' reference.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Value 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>Value Ref</em>' reference.
	 * @see #setValueRef(DatamartMeasure)
	 * @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTableMeasure_ValueRef()
	 * @model
	 * @generated
	 */
	DatamartMeasure getValueRef();

	/**
	 * Sets the value of the '{@link org.eclipse.osbp.xtext.table.TableMeasure#getValueRef <em>Value Ref</em>}' reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Value Ref</em>' reference.
	 * @see #getValueRef()
	 * @generated
	 */
	void setValueRef(DatamartMeasure value);

} // TableMeasure

Back to the top