Revision 2616 org.gvsig.raster/trunk/org.gvsig.raster/org.gvsig.raster.lib/org.gvsig.raster.lib.impl/src/main/java/org/gvsig/raster/impl/store/serializer/StatisticsRmfSerializer.java

View differences:

StatisticsRmfSerializer.java
227 227
			return valueList;
228 228
	}
229 229

  
230
	/*
231
	 * (non-Javadoc)
232
	 * @see org.gvsig.raster.dataset.io.rmf.IRmfBlock#read(java.lang.String)
233
	 */
234 230
	public void read(String xml) throws ParsingException {
235 231
		int bandCount = 0;
236 232
		double[] max = null, maxRGB = null;
......
307 303
		getDatasetStatistics().setCalculated(true);
308 304
	}
309 305

  
310
	/*
311
	 * (non-Javadoc)
312
	 * @see org.gvsig.raster.dataset.io.rmf.IRmfBlock#write()
313
	 */
314 306
	public String write() {
315 307
		if (stat == null)
316 308
			return "";
......
357 349
		return b.toString();
358 350
	}
359 351

  
360
	/*
361
	 * (non-Javadoc)
362
	 * @see org.gvsig.raster.dataset.io.rmf.IRmfBlock#getResult()
363
	 */
364 352
	public Object getResult() {
365 353
		return stat;
366 354
	}
367 355

  
368
	/*
369
	 *  (non-Javadoc)
370
	 * @see org.gvsig.raster.dataset.io.rmf.IRmfBlock#getMainTag()
371
	 */
372 356
	public String getMainTag() {
373 357
		return MAIN_TAG;
374 358
	}

Also available in: Unified diff