001// License: GPL. For details, see Readme.txt file.
002package org.openstreetmap.gui.jmapviewer.interfaces;
003
004import java.io.File;
005
006public interface TileClearController {
007
008    void initClearDir(File dir);
009
010    void initClearFiles(File[] files);
011
012    boolean cancel();
013
014    void fileDeleted(File file);
015
016    void clearFinished();
017}