Interface HistoryDataSetListener
-
- All Known Implementing Classes:
DownloadOsmChangeTask.HistoryLoaderAndListener
,HistoryBrowserDialog
public interface HistoryDataSetListener
A listener that listens to changes in theHistoryDataSet
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
historyDataSetCleared(HistoryDataSet source)
Fired by aHistoryDataSet
if the history cached is cleared.void
historyUpdated(HistoryDataSet source, PrimitiveId id)
Fired by aHistoryDataSet
if the cached history of an OSM primitive with idid
is updated
-
-
-
Method Detail
-
historyUpdated
void historyUpdated(HistoryDataSet source, PrimitiveId id)
Fired by aHistoryDataSet
if the cached history of an OSM primitive with idid
is updated- Parameters:
source
- the data set firing the eventid
- the id of the updated primitive
-
historyDataSetCleared
void historyDataSetCleared(HistoryDataSet source)
Fired by aHistoryDataSet
if the history cached is cleared.- Parameters:
source
- the history data set firing the event
-
-