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/TableGridImpl.java')
-rw-r--r--org.eclipse.osbp.xtext.table/emf-gen/org/eclipse/osbp/xtext/table/impl/TableGridImpl.java118
1 files changed, 6 insertions, 112 deletions
diff --git a/org.eclipse.osbp.xtext.table/emf-gen/org/eclipse/osbp/xtext/table/impl/TableGridImpl.java b/org.eclipse.osbp.xtext.table/emf-gen/org/eclipse/osbp/xtext/table/impl/TableGridImpl.java
index 02257ea..c22f984 100644
--- a/org.eclipse.osbp.xtext.table/emf-gen/org/eclipse/osbp/xtext/table/impl/TableGridImpl.java
+++ b/org.eclipse.osbp.xtext.table/emf-gen/org/eclipse/osbp/xtext/table/impl/TableGridImpl.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
*
*/
@@ -36,8 +38,6 @@ import org.eclipse.osbp.xtext.table.TableGrid;
* The following features are implemented:
* </p>
* <ul>
- * <li>{@link org.eclipse.osbp.xtext.table.impl.TableGridImpl#isPolling <em>Polling</em>}</li>
- * <li>{@link org.eclipse.osbp.xtext.table.impl.TableGridImpl#getPollingTime <em>Polling Time</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.table.impl.TableGridImpl#isFiltering <em>Filtering</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.table.impl.TableGridImpl#getToolbar <em>Toolbar</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.table.impl.TableGridImpl#isEmbedded <em>Embedded</em>}</li>
@@ -50,46 +50,6 @@ import org.eclipse.osbp.xtext.table.TableGrid;
*/
public class TableGridImpl extends TableLazyResolverImpl implements TableGrid {
/**
- * The default value of the '{@link #isPolling() <em>Polling</em>}' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @see #isPolling()
- * @generated
- * @ordered
- */
- protected static final boolean POLLING_EDEFAULT = false;
-
- /**
- * The cached value of the '{@link #isPolling() <em>Polling</em>}' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @see #isPolling()
- * @generated
- * @ordered
- */
- protected boolean polling = POLLING_EDEFAULT;
-
- /**
- * The default value of the '{@link #getPollingTime() <em>Polling Time</em>}' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @see #getPollingTime()
- * @generated
- * @ordered
- */
- protected static final String POLLING_TIME_EDEFAULT = null;
-
- /**
- * The cached value of the '{@link #getPollingTime() <em>Polling Time</em>}' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @see #getPollingTime()
- * @generated
- * @ordered
- */
- protected String pollingTime = POLLING_TIME_EDEFAULT;
-
- /**
* The default value of the '{@link #isFiltering() <em>Filtering</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
@@ -213,48 +173,6 @@ public class TableGridImpl extends TableLazyResolverImpl implements TableGrid {
* <!-- end-user-doc -->
* @generated
*/
- public boolean isPolling() {
- return polling;
- }
-
- /**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @generated
- */
- public void setPolling(boolean newPolling) {
- boolean oldPolling = polling;
- polling = newPolling;
- if (eNotificationRequired())
- eNotify(new ENotificationImpl(this, Notification.SET, TableDSLPackage.TABLE_GRID__POLLING, oldPolling, polling));
- }
-
- /**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @generated
- */
- public String getPollingTime() {
- return pollingTime;
- }
-
- /**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @generated
- */
- public void setPollingTime(String newPollingTime) {
- String oldPollingTime = pollingTime;
- pollingTime = newPollingTime;
- if (eNotificationRequired())
- eNotify(new ENotificationImpl(this, Notification.SET, TableDSLPackage.TABLE_GRID__POLLING_TIME, oldPollingTime, pollingTime));
- }
-
- /**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @generated
- */
public boolean isFiltering() {
return filtering;
}
@@ -437,10 +355,6 @@ public class TableGridImpl extends TableLazyResolverImpl implements TableGrid {
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
- case TableDSLPackage.TABLE_GRID__POLLING:
- return isPolling();
- case TableDSLPackage.TABLE_GRID__POLLING_TIME:
- return getPollingTime();
case TableDSLPackage.TABLE_GRID__FILTERING:
return isFiltering();
case TableDSLPackage.TABLE_GRID__TOOLBAR:
@@ -466,12 +380,6 @@ public class TableGridImpl extends TableLazyResolverImpl implements TableGrid {
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
- case TableDSLPackage.TABLE_GRID__POLLING:
- setPolling((Boolean)newValue);
- return;
- case TableDSLPackage.TABLE_GRID__POLLING_TIME:
- setPollingTime((String)newValue);
- return;
case TableDSLPackage.TABLE_GRID__FILTERING:
setFiltering((Boolean)newValue);
return;
@@ -502,12 +410,6 @@ public class TableGridImpl extends TableLazyResolverImpl implements TableGrid {
@Override
public void eUnset(int featureID) {
switch (featureID) {
- case TableDSLPackage.TABLE_GRID__POLLING:
- setPolling(POLLING_EDEFAULT);
- return;
- case TableDSLPackage.TABLE_GRID__POLLING_TIME:
- setPollingTime(POLLING_TIME_EDEFAULT);
- return;
case TableDSLPackage.TABLE_GRID__FILTERING:
setFiltering(FILTERING_EDEFAULT);
return;
@@ -538,10 +440,6 @@ public class TableGridImpl extends TableLazyResolverImpl implements TableGrid {
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
- case TableDSLPackage.TABLE_GRID__POLLING:
- return polling != POLLING_EDEFAULT;
- case TableDSLPackage.TABLE_GRID__POLLING_TIME:
- return POLLING_TIME_EDEFAULT == null ? pollingTime != null : !POLLING_TIME_EDEFAULT.equals(pollingTime);
case TableDSLPackage.TABLE_GRID__FILTERING:
return filtering != FILTERING_EDEFAULT;
case TableDSLPackage.TABLE_GRID__TOOLBAR:
@@ -568,11 +466,7 @@ public class TableGridImpl extends TableLazyResolverImpl implements TableGrid {
if (eIsProxy()) return super.toString();
StringBuffer result = new StringBuffer(super.toString());
- result.append(" (polling: ");
- result.append(polling);
- result.append(", pollingTime: ");
- result.append(pollingTime);
- result.append(", filtering: ");
+ result.append(" (filtering: ");
result.append(filtering);
result.append(", embedded: ");
result.append(embedded);

Back to the top