Package org.openstreetmap.josm.data.osm
Interface ChangesetCacheEvent
-
- All Known Implementing Classes:
DefaultChangesetCacheEvent
public interface ChangesetCacheEvent
An event indicating a change in theChangesetCache
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<Changeset>
getAddedChangesets()
Gets a list ofChangeset
s that were added to the cachejava.util.Collection<Changeset>
getRemovedChangesets()
Gets a list ofChangeset
s that were removed from the cacheChangesetCache
getSource()
The changeset cache the change happened in.java.util.Collection<Changeset>
getUpdatedChangesets()
Gets a list ofChangeset
s that were changed
-
-
-
Method Detail
-
getSource
ChangesetCache getSource()
The changeset cache the change happened in.- Returns:
- The
ChangesetCache
-
getAddedChangesets
java.util.Collection<Changeset> getAddedChangesets()
Gets a list ofChangeset
s that were added to the cache- Returns:
- The changesets
-
getRemovedChangesets
java.util.Collection<Changeset> getRemovedChangesets()
Gets a list ofChangeset
s that were removed from the cache- Returns:
- The changesets
-
getUpdatedChangesets
java.util.Collection<Changeset> getUpdatedChangesets()
Gets a list ofChangeset
s that were changed- Returns:
- The changesets
-
-