view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/RangeWithValues.java @ 3142:9aed2e4de3ca

FixA: Moved GaugeFinder into top level class. flys-artifacts/trunk@4750 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 21 Jun 2012 15:50:58 +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