comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/RangeWithValues.java @ 417:e54053bc0e70

Implemented the input validation of WQ in the adapted WQ panel. flys-artifacts/trunk@1882 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Tue, 10 May 2011 15:28:30 +0000
parents
children b220287a171e
comparison
equal deleted inserted replaced
416:340dc41a7ea3 417:e54053bc0e70
1 package de.intevation.flys.artifacts.model;
2
3 import java.io.Serializable;
4
5
6 /**
7 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
8 */
9 public class RangeWithValues implements Serializable {
10
11 protected double lower;
12 protected double upper;
13 protected double[] values;
14
15
16 public RangeWithValues() {
17 }
18
19
20 public RangeWithValues(double lower, double upper, double[] values) {
21 this.lower = lower;
22 this.upper = upper;
23 this.values = values;
24 }
25
26
27 public double getLower() {
28 return lower;
29 }
30
31
32 public double getUpper() {
33 return upper;
34 }
35
36
37 public double[] getValues() {
38 return values;
39 }
40 }
41 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :

http://dive4elements.wald.intevation.org