source: josm/trunk/src/org/openstreetmap/josm/data/osm/ChangesetCacheEvent.java@ 2615

Last change on this file since 2615 was 2613, checked in by Gubaer, 14 years ago

new: global in-memory cache for downloaded changesets
new: toggle dialog for changesets
new: downloading of changesets (currently without changeset content, will follow later)

File size: 354 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.osm;
3
4import java.util.Collection;
5
6public interface ChangesetCacheEvent {
7 ChangesetCache getSource();
8 Collection<Changeset> getAddedChangesets();
9 Collection<Changeset> getRemovedChangesets();
10 Collection<Changeset> getUpdatedChangesets();
11
12}
Note: See TracBrowser for help on using the repository browser.