package com.mutu.mapapi.tileprovider.modules;
import java.io.InputStream;
import com.mutu.mapapi.tileprovider.MapTile;
import com.mutu.mapapi.tileprovider.tilesource.ITileSource;
public interface IArchiveFile {
/**
* Get the input stream for the requested tile.
* @return the input stream, or null if the archive doesn't contain an entry for the requested tile
*/
InputStream getInputStream(ITileSource tileSource, MapTile tile);
}