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

Last change on this file since 3779 was 3083, checked in by bastiK, 14 years ago

added svn:eol-style=native to source files

  • Property svn:eol-style set to native
File size: 342 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.