finish first part of database -> tilesource refactoring

- now there is a clean separation between TileSource type
  and TileDataSource(worker instances)
This commit is contained in:
Hannes Janetzek
2013-05-27 03:13:24 +02:00
parent 2be2ab111a
commit 4abec66e39
47 changed files with 666 additions and 643 deletions

View File

@@ -15,11 +15,11 @@
package org.oscim.core;
/**
* MapElement is created by MapDatabase(s) and passed to MapTileLoader
* via IMapDataSink.renderElement() MapTileLoader processes the
* MapElement is created by TileDataSource(s) and passed to MapTileLoader
* via ITileDataSink.process() MapTileLoader processes the
* data into MapTile.layers.
* -----
* This is really just a buffer object that belongs to MapDatabase, so
* This is really just a buffer object that belongs to TileDataSource, so
* dont keep a reference to it when passed as parameter.
*/
public class MapElement extends GeometryBuffer {