001// License: GPL
002package org.openstreetmap.gui.jmapviewer.interfaces;
003
004/**
005 * Interface that allow cleaning the tile cache without specifying exact type of loader
006 */
007public interface CachedTileLoader {
008    public void clearCache(TileSource source);
009    public void clearCache(TileSource source, TileClearController controller);
010}