/** * 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'. * * *

* The following features are supported: *

* * * @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTable() * @model * @generated */ public interface Table extends TableBase { /** * Returns the value of the 'Description' attribute. * *

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

* * @return the value of the 'Description' attribute. * @see #setDescription(boolean) * @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTable_Description() * @model unique="false" * @generated */ boolean isDescription(); /** * Sets the value of the '{@link org.eclipse.osbp.xtext.table.Table#isDescription Description}' attribute. * * * @param value the new value of the 'Description' attribute. * @see #isDescription() * @generated */ void setDescription(boolean value); /** * Returns the value of the 'Description Value' attribute. * *

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

* * @return the value of the 'Description Value' attribute. * @see #setDescriptionValue(String) * @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTable_DescriptionValue() * @model unique="false" * @generated */ String getDescriptionValue(); /** * Sets the value of the '{@link org.eclipse.osbp.xtext.table.Table#getDescriptionValue Description Value}' attribute. * * * @param value the new value of the 'Description Value' attribute. * @see #getDescriptionValue() * @generated */ void setDescriptionValue(String value); /** * Returns the value of the 'Tabletype' containment reference. * *

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

* * @return the value of the 'Tabletype' containment reference. * @see #setTabletype(TableOption) * @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTable_Tabletype() * @model containment="true" * @generated */ TableOption getTabletype(); /** * Sets the value of the '{@link org.eclipse.osbp.xtext.table.Table#getTabletype Tabletype}' containment reference. * * * @param value the new value of the 'Tabletype' containment reference. * @see #getTabletype() * @generated */ void setTabletype(TableOption value); } // Table