Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.osbp.xtext.table/emf-gen/org/eclipse/osbp/xtext/table/impl/TableDSLFactoryImpl.java')
-rw-r--r--org.eclipse.osbp.xtext.table/emf-gen/org/eclipse/osbp/xtext/table/impl/TableDSLFactoryImpl.java30
1 files changed, 5 insertions, 25 deletions
diff --git a/org.eclipse.osbp.xtext.table/emf-gen/org/eclipse/osbp/xtext/table/impl/TableDSLFactoryImpl.java b/org.eclipse.osbp.xtext.table/emf-gen/org/eclipse/osbp/xtext/table/impl/TableDSLFactoryImpl.java
index c771f62..6dc1a9d 100644
--- a/org.eclipse.osbp.xtext.table/emf-gen/org/eclipse/osbp/xtext/table/impl/TableDSLFactoryImpl.java
+++ b/org.eclipse.osbp.xtext.table/emf-gen/org/eclipse/osbp/xtext/table/impl/TableDSLFactoryImpl.java
@@ -1,13 +1,15 @@
/**
* 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
+ * are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
- * http{//www.eclipse.org/legal/epl-v10.html
+ * https://www.eclipse.org/legal/epl-2.0/
+ *
+ * SPDX-License-Identifier: EPL-2.0
*
* Based on ideas from Xtext, Xtend, Xcore
*
- * Contributors{
+ * Contributors:
* Joerg Riegel - Initial implementation
*
*/
@@ -77,8 +79,6 @@ public class TableDSLFactoryImpl extends EFactoryImpl implements TableDSLFactory
case TableDSLPackage.TABLE_SELECTION: return createTableSelection();
case TableDSLPackage.TABLE_TABLE: return createTableTable();
case TableDSLPackage.TABLE_GRID: return createTableGrid();
- case TableDSLPackage.TABLE_BEAN: return createTableBean();
- case TableDSLPackage.TABLE_BEAN_DATASOURCE: return createTableBeanDatasource();
case TableDSLPackage.TABLE_DTO_DATASOURCE: return createTableDtoDatasource();
case TableDSLPackage.TABLE_GRID_PROPERTY: return createTableGridProperty();
case TableDSLPackage.TABLE_PREORDER: return createTablePreorder();
@@ -247,26 +247,6 @@ public class TableDSLFactoryImpl extends EFactoryImpl implements TableDSLFactory
* <!-- end-user-doc -->
* @generated
*/
- public TableBean createTableBean() {
- TableBeanImpl tableBean = new TableBeanImpl();
- return tableBean;
- }
-
- /**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @generated
- */
- public TableBeanDatasource createTableBeanDatasource() {
- TableBeanDatasourceImpl tableBeanDatasource = new TableBeanDatasourceImpl();
- return tableBeanDatasource;
- }
-
- /**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @generated
- */
public TableDtoDatasource createTableDtoDatasource() {
TableDtoDatasourceImpl tableDtoDatasource = new TableDtoDatasourceImpl();
return tableDtoDatasource;

Back to the top