/** * 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.osbp.dsl.semantic.dto.LDto; import org.eclipse.osbp.infogrid.model.gridsource.CxGridSource; /** * * A representation of the model object 'Table Dto Datasource'. * * *

* The following features are supported: *

* * * @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTableDtoDatasource() * @model * @generated */ public interface TableDtoDatasource extends CxGridSource { /** * Returns the value of the 'Dto Source' reference. * *

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

* * @return the value of the 'Dto Source' reference. * @see #setDtoSource(LDto) * @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTableDtoDatasource_DtoSource() * @model * @generated */ LDto getDtoSource(); /** * Sets the value of the '{@link org.eclipse.osbp.xtext.table.TableDtoDatasource#getDtoSource Dto Source}' reference. * * * @param value the new value of the 'Dto Source' reference. * @see #getDtoSource() * @generated */ void setDtoSource(LDto value); } // TableDtoDatasource