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 previous decision.
008 */
009public class PreviousDecisionEvent extends EventObject {
010
011    private static final long serialVersionUID = 1L;
012
013    /**
014     * Constructs a new {@code PreviousDecisionEvent}.
015     * @param source object on which the Event initially occurred
016     */
017    public PreviousDecisionEvent(Object source) {
018        super(source);
019    }
020}