Interface Refreshable
public interface Refreshable
Refreshable page (or component).
-
Method Summary
Modifier and TypeMethodDescriptionintCurrent refreshing interval (may depend on page content).booleanIf the refresh is enabledvoidrefresh(org.apache.wicket.ajax.AjaxRequestTarget target) Called on manually requested refresh action.
-
Method Details
-
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).
-