comparison flys-client/src/main/java/de/intevation/flys/client/shared/model/WQInfoObjectImpl.java @ 245:1e73d5a4859c

Added new WQ info service and data structures. flys-client/trunk@1825 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Raimund Renkert <raimund.renkert@intevation.de>
date Wed, 04 May 2011 14:54:38 +0000
parents
children
comparison
equal deleted inserted replaced
244:1bc787eeb556 245:1e73d5a4859c
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