Package org.openstreetmap.josm.data.gpx
Interface GpxData.GpxDataChangeListener
-
- All Known Implementing Classes:
CorrelateGpxWithImages.StatusBarUpdater
,GpxDrawHelper
- Enclosing class:
- GpxData
- 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 static interface GpxData.GpxDataChangeListener
A listener that listens to GPX data changes.- Since:
- 12156
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description void
gpxDataChanged(GpxData.GpxDataChangeEvent e)
Called when the gpx data changed.default void
modifiedStateChanged(boolean modified)
Called when the modified state of the data changed
-
-
-
Method Detail
-
gpxDataChanged
void gpxDataChanged(GpxData.GpxDataChangeEvent e)
Called when the gpx data changed.- Parameters:
e
- The event
-
modifiedStateChanged
default void modifiedStateChanged(boolean modified)
Called when the modified state of the data changed- Parameters:
modified
- the new modified state
-
-