comparison flys-client/src/main/java/org/dive4elements/river/client/shared/model/WQInfoObjectImpl.java @ 5834:f507086aa94b

Repaired internal references.
author Sascha L. Teichmann <teichmann@intevation.de>
date Thu, 25 Apr 2013 12:31:32 +0200
parents flys-client/src/main/java/de/intevation/flys/client/shared/model/WQInfoObjectImpl.java@1e73d5a4859c
children 821a02bbfb4e
comparison
equal deleted inserted replaced
5833:a2bdc0f524e8 5834:f507086aa94b
1 package de.intevation.flys.client.shared.model;
2
3
4 /**
5 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a>
6 */
7 public class WQInfoObjectImpl implements WQInfoObject {
8
9 protected String name;
10
11 protected String type;
12
13 protected Double value;
14
15
16 public WQInfoObjectImpl() {
17 }
18
19
20 public WQInfoObjectImpl(
21 String name,
22 String type,
23 Double value)
24 {
25 this.name = name;
26 this.type = type;
27 this.value = value;
28 }
29
30
31 public String getName() {
32 return name;
33 }
34
35
36 public String getType() {
37 return type;
38 }
39
40
41 public Double getValue() {
42 return value;
43 }
44 }
45 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org