blob: 8890be4128301b3a75483bce3623e3c64c86ae97 [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>Table String Lookup</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.table.TableStringLookup#getLookupValue <em>Lookup Value</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.table.TableStringLookup#getDiscrete <em>Discrete</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTableStringLookup()
* @model
* @generated
*/
public interface TableStringLookup extends TableLookup {
/**
* Returns the value of the '<em><b>Lookup Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Lookup 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>Lookup Value</em>' attribute.
* @see #setLookupValue(String)
* @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTableStringLookup_LookupValue()
* @model unique="false"
* @generated
*/
String getLookupValue();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.table.TableStringLookup#getLookupValue <em>Lookup Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Lookup Value</em>' attribute.
* @see #getLookupValue()
* @generated
*/
void setLookupValue(String value);
/**
* Returns the value of the '<em><b>Discrete</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Discrete</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Discrete</em>' containment reference.
* @see #setDiscrete(TableRangeElement)
* @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTableStringLookup_Discrete()
* @model containment="true"
* @generated
*/
TableRangeElement getDiscrete();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.table.TableStringLookup#getDiscrete <em>Discrete</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Discrete</em>' containment reference.
* @see #getDiscrete()
* @generated
*/
void setDiscrete(TableRangeElement value);
} // TableStringLookup