source: josm/trunk/src/org/openstreetmap/josm/data/conflict/IConflictListener.java@ 13224

Last change on this file since 13224 was 12453, checked in by bastiK, 7 years ago

see #14794 - remaining javadoc for the josm/data/ packages

  • Property svn:eol-style set to native
File size: 639 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.conflict;
3
4/**
5 * Interface for listeners that get notified when conflicts are added to or
6 * removed from a {@link ConflictCollection}.
7 */
8public interface IConflictListener {
9 /**
10 * Called when conflicts are added.
11 * @param conflicts collection to which conflicts have been added
12 */
13 void onConflictsAdded(ConflictCollection conflicts);
14
15 /**
16 * Called when conflicts are removed.
17 * @param conflicts collection from which conflicts have been removed
18 */
19 void onConflictsRemoved(ConflictCollection conflicts);
20}
Note: See TracBrowser for help on using the repository browser.