Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/jfree/DoubleBounds.java @ 2395:cd4fb19ab892
Some API changes in ChartGenerator and XYChartGenerator for fetching user specified zoom values.
flys-artifacts/trunk@4021 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Fri, 10 Feb 2012 08:56:19 +0000 |
parents | d0e7afb3696b |
children | c38063bf99da |
line wrap: on
line source
package de.intevation.flys.jfree; import org.jfree.chart.axis.ValueAxis; import org.jfree.data.Range; /** * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> */ public class DoubleBounds implements Bounds { protected double lower; protected double upper; public DoubleBounds(double lower, double upper) { this.lower = lower; this.upper = upper; } @Override public Number getLower() { return Double.valueOf(lower); } @Override public Number getUpper() { return Double.valueOf(upper); } @Override public void applyBounds(ValueAxis axis) { axis.setRange(new Range(lower, upper)); } @Override public Bounds combine(Bounds bounds) { if (bounds == null) { return this; } DoubleBounds other = (DoubleBounds) bounds; double otherLower = other.getLower().doubleValue(); double otherUpper = other.getUpper().doubleValue(); return new DoubleBounds( otherLower < lower ? otherLower : lower, otherUpper > upper ? otherUpper : upper); } @Override public String toString() { return "DoubleBounds=[" + lower + " ; " + upper + "]"; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :