source: osm/applications/editors/josm/plugins/eventbus/src/org/openstreetmap/josm/gui/layer/imagery/FilterChangedEvent.java@ 34000

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

Add new EventBus plugin

File size: 532 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.layer.imagery;
3
4import java.util.EventObject;
5
6/**
7 * Event fired when imagery filters settings change.
8 */
9public class FilterChangedEvent extends EventObject {
10
11 private static final long serialVersionUID = 1L;
12
13 /**
14 * Constructs a new {@code FilterChangedEvent}.
15 * @param source object on which the Event initially occurred
16 */
17 public FilterChangedEvent(Object source) {
18 super(source);
19 }
20}
Note: See TracBrowser for help on using the repository browser.