Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/state/MinMaxState.java @ 469:62fc63d0f71d
Added a new State in Product Verticalprofile in Timeseriespoints.
Now it will be displayed the Years where measurements happened and than only the dates of the chosen Year will be fetched and displayed.
gnv-artifacts/trunk@532 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Tue, 12 Jan 2010 12:42:53 +0000 |
parents | e964a3d8f7bc |
children | b7bb66440cc8 |
line wrap: on
line source
/** * */ package de.intevation.gnv.state; import java.util.ArrayList; import java.util.Collection; import org.apache.log4j.Logger; import de.intevation.gnv.geobackend.base.Result; import de.intevation.gnv.state.describedata.DefaultMinMaxDescribeData; import de.intevation.gnv.state.describedata.DescribeData; /** * @author Tim Englich <tim.englich@intevation.de> * */ public class MinMaxState extends StateBase { /** * The UID of this Class */ private static final long serialVersionUID = -3525903792105187408L; /** * the logger, used to log exceptions and additonaly information */ private static Logger log = Logger.getLogger(MinMaxState.class); /** * Constructor */ public MinMaxState() { super(); } /** * @see de.intevation.gnv.state.StateBase#purifyResult(java.util.Collection, * java.lang.String) */ @Override protected void purifyResult(Collection<Result> result, String uuid) { log.debug("MinMaxState.purifyResult"); Collection<Object> describeData = this.getDescibeData(uuid); if (describeData == null) { describeData = new ArrayList<Object>(); } if (result != null && result.size() == 1) { Result value = result.iterator().next(); DescribeData values = new DefaultMinMaxDescribeData(this.dataName, value.getObject("MIN"), value.getObject("MAX")); log.debug(values.toString()); describeData.add(values); } else { log.warn("Result cannot be handled as MinMax Resultset"); } this.setDescibeData(uuid, describeData); } }