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/WMTSTileMatrixSetImpl.java

View differences:

WMTSTileMatrixSetImpl.java
36 36
 * @author Nacho Brodin (nachobrodin@gmail.com)
37 37
 */
38 38
public abstract class WMTSTileMatrixSetImpl extends WMTSBaseStruct implements WMTSTileMatrixSet {
39
    protected WMTSBoundingBoxImpl bbox                         = null;
40
    private String            supportedCRS                 = null;
41
    private String            wellKnownScaleSet            = null;
42
    //WMTSTileMatrix
43
    protected ArrayList       tileMatrix                   = null;
44
    protected boolean         forceLongitudeFirstAxisOrder = false;
39
    protected WMTSBoundingBoxImpl        bbox                         = null;
40
    private String                       supportedCRS                 = null;
41
    private String                       wellKnownScaleSet            = null;
42
    protected List<WMTSTileMatrix>       tileMatrix                   = null;
43
    protected boolean                    forceLongitudeFirstAxisOrder = false;
45 44
	
46 45
	/**
47 46
	 * Sets longitude first in the axis order read from the capabilities file
......
58 57
     * @throws IOException
59 58
     * @throws XmlPullParserException
60 59
     */
61
	public abstract void parse(KXmlParser parser, ArrayList list) throws IOException, XmlPullParserException; 
60
	public abstract void parse(KXmlParser parser, List<WMTSTileMatrixSet> list) throws IOException, XmlPullParserException; 
62 61
    
63 62
	public void setLayerBBox(WMTSBoundingBoxImpl bbox) {
64 63
		if(bbox != null) {

Also available in: Unified diff