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