blob: 0a10d07e4ad5bd1e80cb691f9540ee332a8896cd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 BSI Business Systems Integration AG.
* 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
*
* Contributors:
* BSI Business Systems Integration AG - initial API and implementation
******************************************************************************/
package formdata.shared.services.pages;
import javax.annotation.Generated;
import org.eclipse.scout.rt.shared.data.basic.table.AbstractTableRowData;
import org.eclipse.scout.rt.shared.data.page.AbstractTablePageData;
/**
* <b>NOTE:</b><br>
* This class is auto generated by the Scout SDK. No manual modifications recommended.
*/
@Generated(value = "formdata.client.ui.desktop.outline.pages.EmptyTablePage", comments = "This class is auto generated by the Scout SDK. No manual modifications recommended.")
public class EmptyTablePageData extends AbstractTablePageData {
private static final long serialVersionUID = 1L;
@Override
public AbstractTableRowData createRow() {
return new AbstractTableRowData() {
private static final long serialVersionUID = 1L;
};
}
@Override
public Class<? extends AbstractTableRowData> getRowType() {
return AbstractTableRowData.class;
}
}