001// License: GPL. For details, see LICENSE file. 002package org.openstreetmap.josm.gui.download; 003 004/** 005 * Listener to get notified about changes in the list of download sources. 006 * @since 12878 007 */ 008interface DownloadSourceListener { 009 010 /** 011 * Called when a download source has been added. 012 * @param source the new added download source. 013 */ 014 void downloadSourceAdded(DownloadSource<?> source); 015}