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 Collection<Changeset>
getAddedChangesets()
Gets a list ofChangeset
s that were added to the cacheCollection<Changeset>
getRemovedChangesets()
Gets a list ofChangeset
s that were removed from the cacheChangesetCache
getSource()
The changeset cache the change happened in.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
Collection<Changeset> getAddedChangesets()
Gets a list ofChangeset
s that were added to the cache- Returns:
- The changesets
-
getRemovedChangesets
Collection<Changeset> getRemovedChangesets()
Gets a list ofChangeset
s that were removed from the cache- Returns:
- The changesets
-
getUpdatedChangesets
Collection<Changeset> getUpdatedChangesets()
Gets a list ofChangeset
s that were changed- Returns:
- The changesets
-
-