001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.plugins.eventbus.data.osm;
003
004import org.openstreetmap.josm.data.osm.NoteData;
005
006/**
007 * Event fired when the selected note changes.
008 */
009public class SelectedNoteChangedEvent extends AbstractNoteDataEvent {
010
011    private static final long serialVersionUID = 1L;
012
013    /**
014     * Constructs a new {@code SelectedNoteChangedEvent}.
015     * @param source object on which the Event initially occurred
016     * @param noteData note data set
017     */
018    public SelectedNoteChangedEvent(Object source, NoteData noteData) {
019        super(source, noteData);
020    }
021}