mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-25 06:58:39 +00:00
moved CellTable specializations to com.sap.sse.gwt for re-use
Change-Id: I9c72d662dbc43c39918827d57c527895bb818f43
This commit is contained in:
+66
@@ -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();
|
||||
}
|
||||
Reference in New Issue
Block a user