Ignore:
Timestamp:
10.02.2010 15:23:17 (2 years ago)
Author:
Gubaer
Message:

fixed #4392: exception in version history dialog on re-downloading a changed element

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/history/HistoryDataSetListener.java

    r2512 r2961  
    55 
    66public 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     */ 
    714    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); 
    822} 
Note: See TracChangeset for help on using the changeset viewer.