Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/state/SingleInputState.java @ 522:c896282c2601
Issue 156 solved. Added width, height and points as parameter to svg and pdf output mode. Width and height have an effact on the width and height of the export, points is a boolean property which enables/disables the drawing of data points.
gnv-artifacts/trunk@616 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Mon, 25 Jan 2010 09:18:31 +0000 |
parents | a6a33ef35809 |
children | 292fbcd5e9ac |
line wrap: on
line source
/** * */ package de.intevation.gnv.state; import java.util.ArrayList; import java.util.Collection; import java.util.List; import org.apache.log4j.Logger; import de.intevation.gnv.geobackend.base.Result; import de.intevation.gnv.state.describedata.DefaultSingleValueDescribeData; /** * @author Tim Englich <tim.englich@intevation.de> * */ public class SingleInputState extends StateBase { /** * the logger, used to log exceptions and additonaly information */ private static Logger log = Logger.getLogger(SingleInputState.class); /** * */ private static final long serialVersionUID = -6169497306324917318L; /** * Constructor */ public SingleInputState() { } /** * @see de.intevation.gnv.state.StateBase#purifyResult(java.util.Collection, * java.lang.String) */ @Override protected void purifyResult(Collection<Result> result, String uuid) { log.debug("SingleInputState.purifyResult"); List<Object> describeData = this.getDescibeData(uuid); if (describeData == null) { describeData = new ArrayList<Object>(); } String value = null; if (result != null && result.size() == 1) { Result tmpItem = result.iterator().next(); value = tmpItem.getObject("MAX").toString(); } else { value = ""; } describeData.add(new DefaultSingleValueDescribeData( this.dataName, value, getID())); this.setDescibeData(uuid, describeData); } }