/** * 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; /** * * A representation of the model object 'Table Bean'. * * *

* The following features are supported: *

* * * @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTableBean() * @model * @generated */ public interface TableBean extends TableOption { /** * Returns the value of the 'Select By Id' attribute. * *

* If the meaning of the 'Select By Id' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Select By Id' attribute. * @see #setSelectById(boolean) * @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTableBean_SelectById() * @model unique="false" * @generated */ boolean isSelectById(); /** * Sets the value of the '{@link org.eclipse.osbp.xtext.table.TableBean#isSelectById Select By Id}' attribute. * * * @param value the new value of the 'Select By Id' attribute. * @see #isSelectById() * @generated */ void setSelectById(boolean value); /** * Returns the value of the 'Selectalways' attribute. * *

* If the meaning of the 'Selectalways' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Selectalways' attribute. * @see #setSelectalways(boolean) * @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTableBean_Selectalways() * @model unique="false" * @generated */ boolean isSelectalways(); /** * Sets the value of the '{@link org.eclipse.osbp.xtext.table.TableBean#isSelectalways Selectalways}' attribute. * * * @param value the new value of the 'Selectalways' attribute. * @see #isSelectalways() * @generated */ void setSelectalways(boolean value); /** * Returns the value of the 'Header Mode' attribute. * The literals are from the enumeration {@link org.eclipse.osbp.xtext.table.RowHeaderMode}. * *

* If the meaning of the 'Header Mode' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Header Mode' attribute. * @see org.eclipse.osbp.xtext.table.RowHeaderMode * @see #setHeaderMode(RowHeaderMode) * @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTableBean_HeaderMode() * @model unique="false" * @generated */ RowHeaderMode getHeaderMode(); /** * Sets the value of the '{@link org.eclipse.osbp.xtext.table.TableBean#getHeaderMode Header Mode}' attribute. * * * @param value the new value of the 'Header Mode' attribute. * @see org.eclipse.osbp.xtext.table.RowHeaderMode * @see #getHeaderMode() * @generated */ void setHeaderMode(RowHeaderMode value); /** * Returns the value of the 'Source' containment reference. * *

* If the meaning of the 'Source' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Source' containment reference. * @see #setSource(TableDatamart) * @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTableBean_Source() * @model containment="true" * @generated */ TableDatamart getSource(); /** * Sets the value of the '{@link org.eclipse.osbp.xtext.table.TableBean#getSource Source}' containment reference. * * * @param value the new value of the 'Source' containment reference. * @see #getSource() * @generated */ void setSource(TableDatamart value); } // TableBean