-
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
MapLayerAdapter
public interface MapLayerListener extends EventListener
Listener on MapLayer events.- Since:
- 14.0
- Version:
- 17.0 2020-01-04 14:41:53
- Author:
- Stéphane GALLAND
- Maven Group Id:
- org.arakhne.afc.gis
- Maven Artifact Id:
- giscore
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonMapLayerAttributeChanged(MapLayerAttributeChangeEvent event)Invoked when an event on layer's attribute change.voidonMapLayerContentChanged(MapLayerContentEvent event)Invoked when an event on layer's content change.voidonMapLayerHierarchyChanged(MapLayerHierarchyEvent event)Invoked when an event on the layer's hierarchy has occurred.
-
-
-
Method Detail
-
onMapLayerHierarchyChanged
void onMapLayerHierarchyChanged(MapLayerHierarchyEvent event)
Invoked when an event on the layer's hierarchy has occurred.- Parameters:
event- the event.
-
onMapLayerContentChanged
void onMapLayerContentChanged(MapLayerContentEvent event)
Invoked when an event on layer's content change.- Parameters:
event- the event.
-
onMapLayerAttributeChanged
void onMapLayerAttributeChanged(MapLayerAttributeChangeEvent event)
Invoked when an event on layer's attribute change.- Parameters:
event- the event.
-
-