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/util/TableDSLSwitch.java')
-rw-r--r--org.eclipse.osbp.xtext.table/emf-gen/org/eclipse/osbp/xtext/table/util/TableDSLSwitch.java53
1 files changed, 5 insertions, 48 deletions
diff --git a/org.eclipse.osbp.xtext.table/emf-gen/org/eclipse/osbp/xtext/table/util/TableDSLSwitch.java b/org.eclipse.osbp.xtext.table/emf-gen/org/eclipse/osbp/xtext/table/util/TableDSLSwitch.java
index 73413cd..bacc5b6 100644
--- a/org.eclipse.osbp.xtext.table/emf-gen/org/eclipse/osbp/xtext/table/util/TableDSLSwitch.java
+++ b/org.eclipse.osbp.xtext.table/emf-gen/org/eclipse/osbp/xtext/table/util/TableDSLSwitch.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
*
*/
@@ -150,21 +152,6 @@ public class TableDSLSwitch<T> extends Switch<T> {
if (result == null) result = defaultCase(theEObject);
return result;
}
- case TableDSLPackage.TABLE_BEAN: {
- TableBean tableBean = (TableBean)theEObject;
- T result = caseTableBean(tableBean);
- if (result == null) result = caseTableOption(tableBean);
- if (result == null) result = caseTableLazyResolver(tableBean);
- if (result == null) result = defaultCase(theEObject);
- return result;
- }
- case TableDSLPackage.TABLE_BEAN_DATASOURCE: {
- TableBeanDatasource tableBeanDatasource = (TableBeanDatasource)theEObject;
- T result = caseTableBeanDatasource(tableBeanDatasource);
- if (result == null) result = caseTableLazyResolver(tableBeanDatasource);
- if (result == null) result = defaultCase(theEObject);
- return result;
- }
case TableDSLPackage.TABLE_DTO_DATASOURCE: {
TableDtoDatasource tableDtoDatasource = (TableDtoDatasource)theEObject;
T result = caseTableDtoDatasource(tableDtoDatasource);
@@ -635,36 +622,6 @@ public class TableDSLSwitch<T> extends Switch<T> {
}
/**
- * Returns the result of interpreting the object as an instance of '<em>Table Bean</em>'.
- * <!-- begin-user-doc -->
- * This implementation returns null;
- * returning a non-null result will terminate the switch.
- * <!-- end-user-doc -->
- * @param object the target of the switch.
- * @return the result of interpreting the object as an instance of '<em>Table Bean</em>'.
- * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
- * @generated
- */
- public T caseTableBean(TableBean object) {
- return null;
- }
-
- /**
- * Returns the result of interpreting the object as an instance of '<em>Table Bean Datasource</em>'.
- * <!-- begin-user-doc -->
- * This implementation returns null;
- * returning a non-null result will terminate the switch.
- * <!-- end-user-doc -->
- * @param object the target of the switch.
- * @return the result of interpreting the object as an instance of '<em>Table Bean Datasource</em>'.
- * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
- * @generated
- */
- public T caseTableBeanDatasource(TableBeanDatasource object) {
- return null;
- }
-
- /**
* Returns the result of interpreting the object as an instance of '<em>Table Dto Datasource</em>'.
* <!-- begin-user-doc -->
* This implementation returns null;

Back to the top