Revision 35469 branches/v2_0_0_prep/libraries/libRemoteServices/src/org/gvsig/remoteclient/wmts/wmts_1_0_0/struct/WMTSLayer_1_0_0.java

View differences:

WMTSLayer_1_0_0.java
83 83
						setMetadata(nextText(parser)); 
84 84
					} else if (compareName(parser, CapabilitiesTags.WMTS_TILEMATRIXSETLINK)) {
85 85
						WMTSTileMatrixSetLink tileMatrixSetLink = new WMTSTileMatrixSetLink_1_0_0();
86
						tileMatrixSetLink.set
86 87
						tileMatrixSetLink.parse(parser);
87 88
						getTileMatrixSetLink().add(tileMatrixSetLink); 
88 89
					} else if (compareName(parser, CapabilitiesTags.WMTS_RESOURCEURL)) {
......
105 106
    }
106 107
	
107 108
	public WMTSBoundingBox getWGS84BBox() {
108
		if(wgs84bbox == null)
109
		if(wgs84bbox == null) {
109 110
			wgs84bbox = new WMTSBoundingBox_1_0_0();
111
			wgs84bbox.setForceLongitudeFirstAxisOrder(forceLongitudeFirstAxisOrder);
112
		}
110 113
		return wgs84bbox;
111 114
	}
112 115
	
113 116
	public WMTSBoundingBox getBBox() {
114
		if(bbox == null)
117
		if(bbox == null) {
115 118
			bbox = new WMTSBoundingBox_1_0_0();
119
			bbox.setForceLongitudeFirstAxisOrder(forceLongitudeFirstAxisOrder);
120
		}
116 121
		return bbox;
117 122
	}
118 123
}

Also available in: Unified diff