Ignore:
Timestamp:
2017-07-04T14:39:26+02:00 (7 years ago)
Author:
bastiK
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/conflict/IConflictListener.java

    r8512 r12453  
    22package org.openstreetmap.josm.data.conflict;
    33
     4/**
     5 * Interface for listeners that get notified when conflicts are added to or
     6 * removed from a {@link ConflictCollection}.
     7 */
    48public interface IConflictListener {
     9    /**
     10     * Called when conflicts are added.
     11     * @param conflicts collection to which conflicts have been added
     12     */
    513    void onConflictsAdded(ConflictCollection conflicts);
    614
     15    /**
     16     * Called when conflicts are removed.
     17     * @param conflicts collection from which conflicts have been removed
     18     */
    719    void onConflictsRemoved(ConflictCollection conflicts);
    820}
Note: See TracChangeset for help on using the changeset viewer.