Revision 1810 org.gvsig.raster.cache/trunk/org.gvsig.raster.cache/org.gvsig.raster.cache.lib.api/src/main/java/org/gvsig/raster/cache/tile/provider/CacheStruct.java

View differences:

CacheStruct.java
23 23

  
24 24
import java.awt.geom.Point2D;
25 25
import java.awt.geom.Rectangle2D;
26
import java.util.ArrayList;
26
import java.util.List;
27 27

  
28 28
import org.gvsig.raster.cache.tile.Tile;
29 29
import org.gvsig.raster.cache.tile.exception.TileBuildException;
......
140 140
	 * @param r
141 141
	 * @return
142 142
	 */
143
	public ArrayList<Tile> getTileList(Rectangle2D r);
143
	public List<Tile> getTileList(Rectangle2D r);
144 144
	
145 145
	/**
146 146
	 * Gets the list of tiles inside of selected area
......
150 150
	 * @return
151 151
	 * @throws TileBuildException 
152 152
	 */
153
	public ArrayList<Tile> getTileList(Point2D ul, Point2D lr, double mtsPixelRequest) throws TileBuildException;
153
	public List<Tile> getTileList(Point2D ul, Point2D lr, double mtsPixelRequest) throws TileBuildException;
154 154
	
155 155
	/**
156 156
	 * Gets the layer name

Also available in: Unified diff