blob: c184f0d6955b8a2a38e81be82672e9878629198d [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 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* 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.dsl.semantic.common.types.LPackage;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Table Package</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.table.TablePackage#getTables <em>Tables</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTablePackage()
* @model
* @generated
*/
public interface TablePackage extends LPackage {
/**
* Returns the value of the '<em><b>Tables</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.table.Table}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Tables</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Tables</em>' containment reference list.
* @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTablePackage_Tables()
* @model containment="true"
* @generated
*/
EList<Table> getTables();
} // TablePackage