Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/state/MinMaxState.java @ 356:3eee1369c79b
Added the Unit of the Parameter to the Query for Parameters in
all Parameterqueries where it was still missing. Now the Unit will
be displaied in the Combobox and in the Diagramm-Axis-Description
gnv-artifacts/trunk@429 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Tue, 15 Dec 2009 14:55:42 +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); } }