Package org.geotools.map
Interface MapLayerListener
- All Superinterfaces:
- EventListener
The listener that's notified when some layer property changes.
- Author:
- Andrea Aime
- 
Method SummaryModifier and TypeMethodDescriptionvoidlayerChanged(MapLayerEvent event) Invoked when some property of this layer has changed.voidlayerDeselected(MapLayerEvent event) Invoked when the component has been set as not selected.voidlayerHidden(MapLayerEvent event) nvoked when the component has been made invisible.voidlayerPreDispose(MapLayerEvent event) Invoked when the layer is scheduled for disposal to give listeners the chance to finish or cancel any tasks involving the layer.voidlayerSelected(MapLayerEvent event) Invoked when the component has been set as selected.voidlayerShown(MapLayerEvent event) Invoked when the component has been made visible.
- 
Method Details- 
layerChangedInvoked when some property of this layer has changed. May be data, style, title, visibility.- Parameters:
- event- encapsulating the event information
 
- 
layerShownInvoked when the component has been made visible.- Parameters:
- event- encapsulating the event information
 
- 
layerHiddennvoked when the component has been made invisible.- Parameters:
- event- encapsulating the event information
 
- 
layerSelectedInvoked when the component has been set as selected.- Parameters:
- event- encapsulating the event information
 
- 
layerDeselectedInvoked when the component has been set as not selected.- Parameters:
- event- encapsulating the event information
 
- 
layerPreDisposeInvoked when the layer is scheduled for disposal to give listeners the chance to finish or cancel any tasks involving the layer.- Parameters:
- event- encapsulating the event information
 
 
-