Mercurial > dive4elements > river
comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/NamedDouble.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 | 4bd3d8bbb60c |
children |
comparison
equal
deleted
inserted
replaced
2987:98c7a46ec5ae | 3318:dbe2f85bf160 |
---|---|
1 package de.intevation.flys.artifacts.model; | |
2 | |
3 /** | |
4 * Implementation of a <String,double> pair. | |
5 */ | |
6 public class NamedDouble | |
7 extends NamedObjectImpl | |
8 { | |
9 protected double value; | |
10 | |
11 | |
12 /** | |
13 * @param name name for the given value. | |
14 * @param value value. | |
15 */ | |
16 public NamedDouble(String name, double value) { | |
17 super(name); | |
18 this.value = value; | |
19 } | |
20 | |
21 | |
22 /** | |
23 * Get the value. | |
24 * @return the value. | |
25 */ | |
26 public double getValue() { | |
27 return this.value; | |
28 } | |
29 } | |
30 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |