Uses of Class
org.openstreetmap.fma.jtiledownloader.datatypes.Tile

Packages that use Tile
org.openstreetmap.fma.jtiledownloader   
org.openstreetmap.fma.jtiledownloader.cmdline   
org.openstreetmap.fma.jtiledownloader.datatypes   
org.openstreetmap.fma.jtiledownloader.listener   
org.openstreetmap.fma.jtiledownloader.tilelist   
org.openstreetmap.fma.jtiledownloader.views.progressbar   
 

Uses of Tile in org.openstreetmap.fma.jtiledownloader
 

Fields in org.openstreetmap.fma.jtiledownloader with type parameters of type Tile
private  java.util.ArrayList<Tile> TileListExporter._tilesToDownload
           
private  java.util.LinkedList<Tile> TileListDownloader._tilesToDownload
           
 

Methods in org.openstreetmap.fma.jtiledownloader that return Tile
private  Tile TileListDownloader.getTilesToDownload()
          Get tile to download
 

Methods in org.openstreetmap.fma.jtiledownloader with parameters of type Tile
private  void TileListDownloader.addedTileDownloadError(TileDownloadResult result, Tile tileToDownload)
           
private  TileDownloadResult TileListDownloader.doDownload(Tile tileToDownload)
           
private  void TileListExporter.doSingleExport(Tile tileToDownload, java.io.BufferedWriter fileWriter)
           
private  void TileListDownloader.fireErrorOccuredEvent(Tile tile)
           
private  void TileListDownloader.requeueTile(Tile tile)
           
 

Method parameters in org.openstreetmap.fma.jtiledownloader with type arguments of type Tile
 void TileListDownloader.setTilesToDownload(java.util.ArrayList<Tile> tilesToDownload)
          Setter for tilesToDownload
 

Constructor parameters in org.openstreetmap.fma.jtiledownloader with type arguments of type Tile
TileListExporter(java.lang.String downloadPathBase, java.util.ArrayList<Tile> tilesToDownload, TileProviderIf tileProvider)
           
 

Uses of Tile in org.openstreetmap.fma.jtiledownloader.cmdline
 

Methods in org.openstreetmap.fma.jtiledownloader.cmdline with parameters of type Tile
 void JTileDownloaderCommandLine.errorOccured(int actCount, int maxCount, Tile tile)
           
 

Uses of Tile in org.openstreetmap.fma.jtiledownloader.datatypes
 

Fields in org.openstreetmap.fma.jtiledownloader.datatypes declared as Tile
private  Tile TileDownloadError._tile
           
private  Tile[] YDirectory._tiles
           
 

Methods in org.openstreetmap.fma.jtiledownloader.datatypes that return Tile
 Tile TileDownloadError.getTile()
          Getter for tile
 Tile[] YDirectory.getTiles()
          Getter for tiles
 

Methods in org.openstreetmap.fma.jtiledownloader.datatypes that return types with arguments of type Tile
static java.util.Comparator<Tile> TileComparatorFactory.getComparator(int type)
           
 

Methods in org.openstreetmap.fma.jtiledownloader.datatypes with parameters of type Tile
 int TileComparatorFactory.SimpleComparator.compare(Tile t1, Tile t2)
          This method first compares the z value of the two Tile objects.
 int TileComparatorFactory.QuadComparator.compare(Tile t1, Tile t2)
          This method first compares the z value of the two Tile objects.
 int TileComparatorFactory.RecursiveComparator.compare(Tile t1, Tile t2)
           
 java.lang.String TileProviderIf.getTileFilename(Tile tile)
          Constructs the relative tile-image filename
 java.lang.String GenericTileProvider.getTileFilename(Tile tile)
           
 java.lang.String TileProviderIf.getTileUrl(Tile tile)
          Constructs the tile url.
 java.lang.String MapSurferTileProvider.getTileUrl(Tile tile)
           
 java.lang.String MapSurferProfileTileProvider.getTileUrl(Tile tile)
           
 java.lang.String GenericTileProvider.getTileUrl(Tile tile)
           
 void TileDownloadError.setTile(Tile tile)
          Setter for tile
 void YDirectory.setTiles(Tile[] tiles)
          Setter for tiles
 

Method parameters in org.openstreetmap.fma.jtiledownloader.datatypes with type arguments of type Tile
static void TileComparatorFactory.sortTileList(java.util.List<Tile> tileList)
           
 

Uses of Tile in org.openstreetmap.fma.jtiledownloader.listener
 

Methods in org.openstreetmap.fma.jtiledownloader.listener with parameters of type Tile
 void TileDownloaderListener.errorOccured(int actCount, int maxCount, Tile tile)
           
 

Uses of Tile in org.openstreetmap.fma.jtiledownloader.tilelist
 

Fields in org.openstreetmap.fma.jtiledownloader.tilelist with type parameters of type Tile
(package private)  java.util.ArrayList<Tile> TileListSimple._tileList
           
private  java.util.ArrayList<Tile> TileListCommonGPX.tilesToDownload
           
 

Methods in org.openstreetmap.fma.jtiledownloader.tilelist that return types with arguments of type Tile
 java.util.ArrayList<Tile> TileListSimple.getTileListToDownload()
           
 java.util.ArrayList<Tile> TileListCommonGPX.getTileListToDownload()
           
 java.util.ArrayList<Tile> TileListCommonBBox.getTileListToDownload()
           
 java.util.ArrayList<Tile> TileList.getTileListToDownload()
           
 

Methods in org.openstreetmap.fma.jtiledownloader.tilelist with parameters of type Tile
 void TileListSimple.addTile(Tile tile)
           
 

Uses of Tile in org.openstreetmap.fma.jtiledownloader.views.progressbar
 

Methods in org.openstreetmap.fma.jtiledownloader.views.progressbar with parameters of type Tile
 void ProgressBar.errorOccured(int actCount, int maxCount, Tile tile)