moved CellTable specializations to com.sap.sse.gwt for re-use

Change-Id: I9c72d662dbc43c39918827d57c527895bb818f43
This commit is contained in:
Axel Uhl
2017-12-12 14:53:03 +01:00
parent ab8379badc
commit 0ef04ce1a4
62 changed files with 124 additions and 97 deletions
@@ -0,0 +1,66 @@
package com.sap.sse.gwt.adminconsole;
import com.google.gwt.user.cellview.client.CellTable;
public interface AdminConsoleTableResources extends CellTable.Resources {
interface AdminConsoleTableStyle extends CellTable.Style {
/**
* Applied to header cells of race columns
*/
String cellTableRaceColumnHeader();
/**
* Applied to header cells of race columns
*/
String cellTableLegColumnHeader();
/**
* Applied to header cells of race columns
*/
String cellTableLegDetailColumnHeader();
/**
* Applied to detail columns
*/
String cellTableLegDetailColumn();
/**
* Applied to race columns
*/
String cellTableRaceColumn();
/**
* Applied to leg columns
*/
String cellTableLegColumn();
/**
* Applied to the totals columns
*/
String cellTableTotalColumn();
/**
* Applied to checkbox column
*/
String cellTableCheckboxColumnCell();
/**
* Applied to the checkbox div when the checkbox is selected
*/
String cellTableCheckboxSelected();
/**
* Applied to the checkbox div when the checkbox is deselected
*/
String cellTableCheckboxDeselected();
/**
* Applied to the disabled rows
*/
String cellTableDisabledRow();
}
@Override
@Source({ CellTable.Style.DEFAULT_CSS, "AdminConsoleTable.css" })
AdminConsoleTableStyle cellTableStyle();
}