Interface GodivaActionsHandler
-
- All Superinterfaces:
org.gwtopenmaps.openlayers.client.event.EventListener
,org.gwtopenmaps.openlayers.client.event.MapMoveListener
,org.gwtopenmaps.openlayers.client.event.MapZoomListener
- All Known Implementing Classes:
BaseWmsClient
,Godiva
public interface GodivaActionsHandler extends org.gwtopenmaps.openlayers.client.event.MapMoveListener, org.gwtopenmaps.openlayers.client.event.MapZoomListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
disableWidgets()
Called to disable widgets.void
enableWidgets()
Called to enable widgets.void
setLoading(boolean loading)
Should be called when a component starts or stops loading.void
updateLinksEtc()
Called when something has changed which means that URLs (permalink, email, KML) must be updated
-
-
-
Method Detail
-
setLoading
void setLoading(boolean loading)
Should be called when a component starts or stops loading. This allows implementing classes to keep a count of the number of elements loading and take appropriate action when something starts loading, or when everything has finished loading- Parameters:
loading
- true if the element has started loading, false if it has finished loading
-
enableWidgets
void enableWidgets()
Called to enable widgets. This allows control of which widgets are available when e.g. animation is happening
-
disableWidgets
void disableWidgets()
Called to disable widgets. This allows control of which widgets are available when e.g. animation is happening
-
updateLinksEtc
void updateLinksEtc()
Called when something has changed which means that URLs (permalink, email, KML) must be updated
-
-