- java.lang.Object
-
- org.arakhne.afc.gis.maplayer.MapLayerAdapter
-
- All Implemented Interfaces:
EventListener,MapLayerListener
public class MapLayerAdapter extends Object implements MapLayerListener
Default implementation of a 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
-
-
Constructor Summary
Constructors Constructor Description MapLayerAdapter()
-
Method Summary
All Methods Instance Methods Concrete 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
public void onMapLayerHierarchyChanged(MapLayerHierarchyEvent event)
Description copied from interface:MapLayerListenerInvoked when an event on the layer's hierarchy has occurred.- Specified by:
onMapLayerHierarchyChangedin interfaceMapLayerListener- Parameters:
event- the event.
-
onMapLayerContentChanged
public void onMapLayerContentChanged(MapLayerContentEvent event)
Description copied from interface:MapLayerListenerInvoked when an event on layer's content change.- Specified by:
onMapLayerContentChangedin interfaceMapLayerListener- Parameters:
event- the event.
-
onMapLayerAttributeChanged
public void onMapLayerAttributeChanged(MapLayerAttributeChangeEvent event)
Description copied from interface:MapLayerListenerInvoked when an event on layer's attribute change.- Specified by:
onMapLayerAttributeChangedin interfaceMapLayerListener- Parameters:
event- the event.
-
-