org.openstreetmap.josm.data.osm.history
Interface HistoryDataSetListener

All Known Implementing Classes:
DownloadOsmChangeTask.HistoryLoaderAndListener, HistoryBrowserDialog, HistoryDialog

public interface HistoryDataSetListener


Method Summary
 void historyDataSetCleared(HistoryDataSet source)
          Fired by a HistoryDataSet if the history cached is cleared.
 void historyUpdated(HistoryDataSet source, PrimitiveId id)
          Fired by a HistoryDataSet if the cached history of an OSM primitive with id id is updated
 

Method Detail

historyUpdated

void historyUpdated(HistoryDataSet source,
                    PrimitiveId id)
Fired by a HistoryDataSet if the cached history of an OSM primitive with id id is updated

Parameters:
source - the data set firing the event
id - the id of the updated primitive

historyDataSetCleared

void historyDataSetCleared(HistoryDataSet source)
Fired by a HistoryDataSet if the history cached is cleared.

Parameters:
source - the history data set firing the event


JOSM