Interface CellTable.Resources
-
- All Superinterfaces:
ClientBundle
- All Known Subinterfaces:
CellTable.BasicResources
public static interface CellTable.Resources extends ClientBundle
A ClientBundle that provides images for this widget.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.google.gwt.resources.client.ClientBundle
ClientBundle.Source
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImageResourcecellTableFooterBackground()The background used for footer cells.ImageResourcecellTableHeaderBackground()The background used for header cells.ImageResourcecellTableLoading()The loading indicator used while the table is waiting for data.ImageResourcecellTableSelectedBackground()The background used for selected cells.ImageResourcecellTableSortAscending()Icon used when a column is sorted in ascending order.ImageResourcecellTableSortDescending()Icon used when a column is sorted in descending order.CellTable.StylecellTableStyle()The styles used in this widget.
-
-
-
Method Detail
-
cellTableFooterBackground
@Source("cellTableHeaderBackground.png") @ImageOptions(repeatStyle=Horizontal, flipRtl=true) ImageResource cellTableFooterBackground()
The background used for footer cells.
-
cellTableHeaderBackground
@ImageOptions(repeatStyle=Horizontal, flipRtl=true) ImageResource cellTableHeaderBackground()
The background used for header cells.
-
cellTableLoading
@ImageOptions(flipRtl=true) ImageResource cellTableLoading()
The loading indicator used while the table is waiting for data.
-
cellTableSelectedBackground
@Source("cellListSelectedBackground.png") @ImageOptions(repeatStyle=Horizontal, flipRtl=true) ImageResource cellTableSelectedBackground()
The background used for selected cells.
-
cellTableSortAscending
@Source("sortAscending.png") @ImageOptions(flipRtl=true) ImageResource cellTableSortAscending()
Icon used when a column is sorted in ascending order.
-
cellTableSortDescending
@Source("sortDescending.png") @ImageOptions(flipRtl=true) ImageResource cellTableSortDescending()
Icon used when a column is sorted in descending order.
-
cellTableStyle
@Source("com/google/gwt/user/cellview/client/CellTable.css") CellTable.Style cellTableStyle()
The styles used in this widget.
-
-