Interface Refreshable
-
public interface Refreshable
Refreshable page (or component).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getRefreshInterval()
Current refreshing interval (may depend on page content).boolean
isRefreshEnabled()
If the refresh is enabledvoid
refresh(org.apache.wicket.ajax.AjaxRequestTarget target)
Called on manually requested refresh action.
-
-
-
Method Detail
-
refresh
void refresh(org.apache.wicket.ajax.AjaxRequestTarget target)
Called on manually requested refresh action.- Parameters:
target
- The request target.
-
isRefreshEnabled
boolean isRefreshEnabled()
If the refresh is enabled
-
getRefreshInterval
int getRefreshInterval()
Current refreshing interval (may depend on page content).
-
-