Mercurial > dive4elements > river
comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/RangeWithValues.java @ 3318:dbe2f85bf160
merged flys-artifacts/2.8
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:14:35 +0200 |
parents | e54053bc0e70 |
children | b220287a171e |
comparison
equal
deleted
inserted
replaced
2987:98c7a46ec5ae | 3318:dbe2f85bf160 |
---|---|
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 : |