Interface DataSetSummary.View
-
- All Superinterfaces:
org.uberfire.client.mvp.HasPresenter<DataSetSummary>,com.google.gwt.user.client.ui.IsWidget,org.uberfire.client.mvp.UberView<DataSetSummary>
- All Known Implementing Classes:
DataSetSummaryView
- Enclosing class:
- DataSetSummary
public static interface DataSetSummary.View extends org.uberfire.client.mvp.UberView<DataSetSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataSetSummary.ViewshowSizePanel(String backendSizeRow, String clientSizeKb)Displays some data set feature's sizes in a panel.DataSetSummary.ViewshowSizePanelIcon(org.gwtbootstrap3.client.ui.constants.IconType type, String title, String color, boolean spin)Displays an icon icon in the size panel such as a loading or error icon.DataSetSummary.ViewshowStatusPanel(Boolean backendCacheStatus, Boolean pushEnabled, Boolean refreshStatus)Displays some data set feature's status in a panel.It produces the loading icon in the status panel to be removed from parent.
-
-
-
Method Detail
-
showStatusPanel
DataSetSummary.View showStatusPanel(Boolean backendCacheStatus, Boolean pushEnabled, Boolean refreshStatus)
Displays some data set feature's status in a panel.It produces the loading icon in the status panel to be removed from parent.
- Parameters:
backendCacheStatus- The status for the backend cache. Ifnull, the widget for the status will be not displayed.pushEnabled- The status for the client push feature. Ifnull, the widget for the status will be not displayed.refreshStatus- The status for the refresh feature. Ifnull, the widget for the status will be not displayed.- Returns:
- The view instance.
-
showSizePanelIcon
DataSetSummary.View showSizePanelIcon(org.gwtbootstrap3.client.ui.constants.IconType type, String title, String color, boolean spin)
Displays an icon icon in the size panel such as a loading or error icon.
- Returns:
- The view instance.
-
showSizePanel
DataSetSummary.View showSizePanel(String backendSizeRow, String clientSizeKb)
Displays some data set feature's sizes in a panel.
- Parameters:
backendSizeRow- The formatted size value for backend cache (in rows).clientSizeKb- The formatted size value for client cache (in KByes).- Returns:
- The view instance.
-
-