Package org.arakhne.afc.attrs.collection
Interface AttributeChangeListener
-
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
AbstractBoundedGISElement,AbstractBusContainer,AbstractBusPrimitive,AbstractGISElement,ArrayMapElementLayer,BusHub,BusItinerary,BusItineraryHalt,BusItineraryLayer,BusLine,BusLineLayer,BusNetwork,BusNetworkLayer,BusStop,GISEditableChangeAttributeChangeAdapter,GridMapElementLayer,MapCircle,MapComposedElement,MapElement,MapElementLayer,MapLayer,MapMultiPoint,MapPoint,MapPolygon,MapPolyline,MapPonctualElement,MultiMapLayer,RoadNetworkLayer,RoadPolyline,StandardRoadNetwork,TreeMapElementLayer
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface AttributeChangeListener extends EventListener
This interface representes a listener on the attribute changes.- Version:
- 17.0 2020-01-04 14:41:51
- Author:
- Stéphane GALLAND
- Maven Group Id:
- org.arakhne.afc.advanced
- Maven Artifact Id:
- attributes
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonAttributeChangeEvent(AttributeChangeEvent event)Invoked when the attribute's value changed.
-
-
-
Method Detail
-
onAttributeChangeEvent
void onAttributeChangeEvent(AttributeChangeEvent event)
Invoked when the attribute's value changed.- Parameters:
event- describes the changes.
-
-