/** * 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.emf.common.util.EList; import org.eclipse.osbp.xtext.datamartdsl.DatamartDefinition; /** * * A representation of the model object 'Table Datamart'. * * *

* The following features are supported: *

* * * @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTableDatamart() * @model * @generated */ public interface TableDatamart extends TableLazyResolver { /** * Returns the value of the 'Datamart Ref' reference. * *

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

* * @return the value of the 'Datamart Ref' reference. * @see #setDatamartRef(DatamartDefinition) * @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTableDatamart_DatamartRef() * @model * @generated */ DatamartDefinition getDatamartRef(); /** * Sets the value of the '{@link org.eclipse.osbp.xtext.table.TableDatamart#getDatamartRef Datamart Ref}' reference. * * * @param value the new value of the 'Datamart Ref' reference. * @see #getDatamartRef() * @generated */ void setDatamartRef(DatamartDefinition value); /** * Returns the value of the 'Elements' containment reference list. * The list contents are of type {@link org.eclipse.osbp.xtext.table.TableElement}. * *

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

* * @return the value of the 'Elements' containment reference list. * @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTableDatamart_Elements() * @model containment="true" * @generated */ EList getElements(); } // TableDatamart