Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/state/describedata/DefaultMinMaxDescribeData.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 | a6a33ef35809 |
line wrap: on
line source
/** * */ package de.intevation.gnv.state.describedata; /** * @author Tim Englich <tim.englich@intevation.de> * */ public class DefaultMinMaxDescribeData implements MinMaxDescribeData { /** * */ private static final long serialVersionUID = -2917176219029052295L; private Object minValue = null; private Object maxValue = null; private String name = null; private final static String minName = "minvalue"; private final static String maxName = "maxvalue"; /** * Constructor */ public DefaultMinMaxDescribeData(String name, Object minValue, Object maxValue) { super(); this.name = name; this.minValue = minValue; this.maxValue = maxValue; } /** * @see de.intevation.gnv.state.describedata.MinMaxDescribeData#getMaxValue() */ public Object getMaxValue() { return this.maxValue; } /** * @see de.intevation.gnv.state.describedata.MinMaxDescribeData#getMinValue() */ public Object getMinValue() { return this.minValue; } /** * @see java.lang.Object#toString() */ @Override public String toString() { return "MIN: " + this.minValue.toString() + " ; MAX: " + this.maxValue.toString(); } /** * @see de.intevation.gnv.state.describedata.MinMaxDescribeData#getName() */ public String getMinName() { return minName; } /** * @see de.intevation.gnv.state.describedata.MinMaxDescribeData#getMaxName() */ public String getMaxName() { return maxName; } /** * @see de.intevation.gnv.state.describedata.MinMaxDescribeData#setMaxValue(java.lang.Object) */ public void setMaxValue(Object maxValue) { this.maxValue = maxValue; } /** * @see de.intevation.gnv.state.describedata.MinMaxDescribeData#setMinValue(java.lang.Object) */ public void setMinValue(Object minValue) { this.minValue = minValue; } public String getName() { return this.name; } }