view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/RangeWithValues.java @ 2089:0da8874bd378

Added initial state to map artifact to be able to advance and step back. The map artifact overrides describe() to have the complete UI information in the describe response document. flys-artifacts/trunk@3613 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Raimund Renkert <raimund.renkert@intevation.de>
date Fri, 06 Jan 2012 12:02:10 +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