Revision 1809 org.gvsig.raster.wmts/trunk/org.gvsig.raster.wmts/org.gvsig.raster.wmts.ogc/org.gvsig.raster.wmts.ogc.impl/src/main/java/org/gvsig/raster/wmts/ogc/impl/struct/WMTSTileMatrixSetLinkImpl.java

View differences:

WMTSTileMatrixSetLinkImpl.java
23 23

  
24 24
import java.io.IOException;
25 25
import java.util.ArrayList;
26
import java.util.List;
26 27

  
28
import org.gvsig.raster.wmts.ogc.struct.WMTSTileMatrixLimits;
27 29
import org.gvsig.raster.wmts.ogc.struct.WMTSTileMatrixSet;
28 30
import org.gvsig.raster.wmts.ogc.struct.WMTSTileMatrixSetLink;
29 31
import org.kxml2.io.KXmlParser;
......
34 36
 * @author Nacho Brodin (nachobrodin@gmail.com)
35 37
 */
36 38
public abstract class WMTSTileMatrixSetLinkImpl implements WMTSTileMatrixSetLink {
37
	private String            tileMatrixSetId              = null;
38
	private WMTSTileMatrixSetImpl tileMatrixSet                = null;
39
	private ArrayList         tileMatrixLimits             = null;
40
	protected boolean         forceLongitudeFirstAxisOrder = false;
41
	//protected WMTSBoundingBox layerBBox                    = null;
39
	private String                       tileMatrixSetId              = null;
40
	private WMTSTileMatrixSetImpl        tileMatrixSet                = null;
41
	private List<WMTSTileMatrixLimits>   tileMatrixLimits             = null;
42
	protected boolean                    forceLongitudeFirstAxisOrder = false;
43
	
42 44
	/**
43 45
	 * Sets longitude first in the axis order read from the capabilities file
44 46
	 * @param force
......
72 74
		this.tileMatrixSet = tileMatrixSet;
73 75
	}
74 76
	
75
	public ArrayList getTileMatrixLimits() {
77
	public List<WMTSTileMatrixLimits> getTileMatrixLimits() {
76 78
		if(tileMatrixLimits == null)
77
			tileMatrixLimits = new ArrayList();
79
			tileMatrixLimits = new ArrayList<WMTSTileMatrixLimits>();
78 80
		return tileMatrixLimits;
79 81
	}
80 82
	

Also available in: Unified diff