source: osm/applications/editors/josm/plugins/eventbus/src/org/openstreetmap/josm/data/conflict/ConflictsRemovedEvent.java@ 34000

Last change on this file since 34000 was 34000, checked in by donvip, 6 years ago

Add new EventBus plugin

File size: 868 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.conflict;
3
4import java.util.Collection;
5
6/**
7 * Event fired when conflicts are removed.
8 */
9public class ConflictsRemovedEvent extends AbstractConflictsEvent {
10
11 private static final long serialVersionUID = 1L;
12
13 /**
14 * Constructs a new {@code ConflictsRemovedEvent}.
15 * @param source object on which the Event initially occurred
16 * @param conflicts conflicts collection
17 */
18 public ConflictsRemovedEvent(Object source, ConflictCollection conflicts) {
19 super(source, conflicts);
20 }
21
22 /**
23 * Returns removed conflicts.
24 * @return removed conflicts
25 */
26 public Collection<Conflict<?>> getRemovedConflicts() {
27 throw new UnsupportedOperationException("Requires a change in core"); // FIXME
28 }
29}
Note: See TracBrowser for help on using the repository browser.