view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/RangeWithValues.java @ 1689:e9475d2ef343

Bugfix: #189 Changed the order of a duration curve CSV export. flys-artifacts/trunk@2911 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Mon, 10 Oct 2011 07:07:17 +0000
parents e54053bc0e70
children b220287a171e
line wrap: on
line source
package de.intevation.flys.artifacts.model;

import java.io.Serializable;


/**
 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
 */
public class RangeWithValues implements Serializable {

    protected double   lower;
    protected double   upper;
    protected double[] values;


    public RangeWithValues() {
    }


    public RangeWithValues(double lower, double upper, double[] values) {
        this.lower  = lower;
        this.upper  = upper;
        this.values = values;
    }


    public double getLower() {
        return lower;
    }


    public double getUpper() {
        return upper;
    }


    public double[] getValues() {
        return values;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :

http://dive4elements.wald.intevation.org