Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/transition/describedata/DefaultMinMaxDescribeData.java @ 255:5403452c06fc
Added proper values for calculating the Statistics of VerticalProfiles and HorizontalProfiles issue86
gnv-artifacts/trunk@330 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Thu, 12 Nov 2009 14:47:20 +0000 |
parents | 4e8f0fd8ed79 |
children |
line wrap: on
line source
/** * */ package de.intevation.gnv.transition.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.transition.describedata.MinMaxDescribeData#getMaxValue() */ public Object getMaxValue() { return this.maxValue; } /** * @see de.intevation.gnv.transition.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.transition.describedata.MinMaxDescribeData#getName() */ public String getMinName() { return minName; } /** * @see de.intevation.gnv.transition.describedata.MinMaxDescribeData#getMaxName() */ public String getMaxName() { return maxName; } /** * @see de.intevation.gnv.transition.describedata.MinMaxDescribeData#setMaxValue(java.lang.Object) */ public void setMaxValue(Object maxValue) { this.maxValue = maxValue; } /** * @see de.intevation.gnv.transition.describedata.MinMaxDescribeData#setMinValue(java.lang.Object) */ public void setMinValue(Object minValue) { this.minValue = minValue; } public String getName() { return this.name; } }