source: josm/trunk/src/org/openstreetmap/josm/data/osm/history/HistoryDataSetListener.java@ 3530

Last change on this file since 3530 was 3530, checked in by stoecker, 14 years ago

fix array preferences

  • Property svn:eol-style set to native
File size: 718 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.osm.history;
3
4import org.openstreetmap.josm.data.osm.PrimitiveId;
5
6public interface HistoryDataSetListener {
7 /**
8 * Fired by a {@see HistoryDataSet} if the cached history of an OSM primitive with
9 * id <code>id</code> is updated
10 *
11 * @param source the data set firing the event
12 * @param id the id of the updated primitive
13 */
14 void historyUpdated(HistoryDataSet source, PrimitiveId id);
15
16 /**
17 * Fired by a {@see HistoryDataSet} if the history cached is cleared.
18 *
19 * @param source the history data set firing the event
20 */
21 void historyDataSetCleared(HistoryDataSet source);
22}
Note: See TracBrowser for help on using the repository browser.