source: josm/trunk/src/org/openstreetmap/josm/data/osm/ChangesetCacheListener.java@ 12867

Last change on this file since 12867 was 12190, checked in by michael2402, 7 years ago

See #14794: More javadoc for data.osm package

  • Property svn:eol-style set to native
File size: 427 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.osm;
3
4/**
5 * A listener that listens to changes on the {@link ChangesetCache}
6 * @see ChangesetCacheEvent
7 */
8@FunctionalInterface
9public interface ChangesetCacheListener {
10
11 /**
12 * Gets notified on changeset cache updates
13 * @param event The event that happened
14 */
15 void changesetCacheUpdated(ChangesetCacheEvent event);
16}
Note: See TracBrowser for help on using the repository browser.