Revision 11065 trunk/libraries/libRaster/src/org/gvsig/raster/dataset/RasterMultiDataset.java

View differences:

RasterMultiDataset.java
45 45
 * @author Nacho Brodin (nachobrodin@gmail.com)
46 46
 *
47 47
 */
48
public class RasterMultiDataset implements IHistogramable{
48
public class RasterMultiDataset implements IHistogramable {
49 49
	//File list
50 50
	private ArrayList 					files = new ArrayList();
51 51
	private String						name = null;
......
864 864
			return histogram.getPercent();
865 865
		return 0;
866 866
	}
867
	
868
}
867

  
868
	/*
869
	 * (non-Javadoc)
870
	 * @see org.gvsig.raster.util.IHistogramable#resetPercent()
871
	 */
872
	public void resetPercent() {
873
		if (histogram != null)
874
			histogram.resetPercent();
875
	}
876
}

Also available in: Unified diff