001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.plugins.eventbus.gui.conflict.tags;
003
004import java.util.EventObject;
005
006/**
007 * Event fired when the focus goes to next decision.
008 */
009public class NextDecisionEvent extends EventObject {
010
011    private static final long serialVersionUID = 1L;
012
013    /**
014     * Constructs a new {@code NextDecisionEvent}.
015     * @param source object on which the Event initially occurred
016     */
017    public NextDecisionEvent(Object source) {
018        super(source);
019    }
020}