Uses of Class
org.openstreetmap.gui.jmapviewer.Tile

Packages that use Tile
org.openstreetmap.gui.jmapviewer   
org.openstreetmap.gui.jmapviewer.interfaces   
 

Uses of Tile in org.openstreetmap.gui.jmapviewer
 

Fields in org.openstreetmap.gui.jmapviewer declared as Tile
(package private)  Tile OsmFileCacheTileLoader.FileLoadJob.tile
           
(package private)  Tile MemoryTileCache.CacheEntry.tile
           
(package private)  Tile JTileDownloaderTileLoader.FileLoadJob.tile
           
 

Methods in org.openstreetmap.gui.jmapviewer that return Tile
 Tile MemoryTileCache.CacheEntry.getTile()
           
protected  Tile JMapViewer.getTile(int tilex, int tiley, int zoom)
          retrieves a tile from the cache.
 Tile MemoryTileCache.getTile(TileSource source, int x, int y, int z)
           
 

Methods in org.openstreetmap.gui.jmapviewer with parameters of type Tile
 void MemoryTileCache.addTile(Tile tile)
           
protected  MemoryTileCache.CacheEntry MemoryTileCache.createCacheEntry(Tile tile)
           
protected  java.net.HttpURLConnection OsmTileLoader.loadTileFromOsm(Tile tile)
           
 void JMapViewer.tileLoadingFinished(Tile tile, boolean success)
           
 

Constructors in org.openstreetmap.gui.jmapviewer with parameters of type Tile
MemoryTileCache.CacheEntry(Tile tile)
           
 

Uses of Tile in org.openstreetmap.gui.jmapviewer.interfaces
 

Methods in org.openstreetmap.gui.jmapviewer.interfaces that return Tile
 Tile TileCache.getTile(TileSource source, int x, int y, int z)
          Retrieves a tile from the cache if present, otherwise null will be returned.
 

Methods in org.openstreetmap.gui.jmapviewer.interfaces with parameters of type Tile
 void TileCache.addTile(Tile tile)
          Adds a tile to the cache.
 void TileLoaderListener.tileLoadingFinished(Tile tile, boolean success)
          Will be called if a new Tile has been loaded successfully.