org.openstreetmap.fma.jtiledownloader.listener
Interface TileDownloaderListener
- All Known Implementing Classes:
- JTileDownloaderCommandLine, ProgressBar
public interface TileDownloaderListener
Method Summary |
void |
downloadComplete(int errorCount,
java.util.ArrayList<TileDownloadError> errorTileList,
int updatedTileCount)
|
void |
downloadedTile(int actCount,
int maxCount,
java.lang.String path,
int updatedCount,
boolean updatedTile)
|
void |
downloadPaused(int actCount,
int maxCount)
|
void |
downloadStopped(int actCount,
int maxCount)
|
void |
errorOccured(int actCount,
int maxCount,
Tile tile)
|
void |
setInfo(java.lang.String message)
|
downloadedTile
void downloadedTile(int actCount,
int maxCount,
java.lang.String path,
int updatedCount,
boolean updatedTile)
- Parameters:
actCount
- maxCount
- path
- updatedTile
-
downloadComplete
void downloadComplete(int errorCount,
java.util.ArrayList<TileDownloadError> errorTileList,
int updatedTileCount)
- Parameters:
errorCount
- errorTileList
- updatedTileCount
-
downloadStopped
void downloadStopped(int actCount,
int maxCount)
- Parameters:
actCount
- maxCount
-
downloadPaused
void downloadPaused(int actCount,
int maxCount)
- Parameters:
actCount
- maxCount
-
setInfo
void setInfo(java.lang.String message)
- Parameters:
message
-
errorOccured
void errorOccured(int actCount,
int maxCount,
Tile tile)
- Parameters:
actCount
- maxCount
- tile
-