001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.gui.preferences;
003
004import java.util.Collection;
005
006@FunctionalInterface
007public interface SourceProvider {
008
009 Collection<SourceEntry> getSources();
010}