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