blob: fe6f437d0520624a15609d23041f6a4c8142ddf0 [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.table;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Expression</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.table.Expression#getNumberValue <em>Number Value</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.table.Expression#getStringValue <em>String Value</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.table.TableDSLPackage#getExpression()
* @model
* @generated
*/
public interface Expression extends TableValueElement {
/**
* Returns the value of the '<em><b>Number Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Number Value</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Number Value</em>' attribute.
* @see #setNumberValue(String)
* @see org.eclipse.osbp.xtext.table.TableDSLPackage#getExpression_NumberValue()
* @model unique="false"
* @generated
*/
String getNumberValue();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.table.Expression#getNumberValue <em>Number Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Number Value</em>' attribute.
* @see #getNumberValue()
* @generated
*/
void setNumberValue(String value);
/**
* Returns the value of the '<em><b>String Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>String Value</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>String Value</em>' attribute.
* @see #setStringValue(String)
* @see org.eclipse.osbp.xtext.table.TableDSLPackage#getExpression_StringValue()
* @model unique="false"
* @generated
*/
String getStringValue();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.table.Expression#getStringValue <em>String Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>String Value</em>' attribute.
* @see #getStringValue()
* @generated
*/
void setStringValue(String value);
} // Expression