comparison gwt-client/src/main/java/org/dive4elements/river/client/shared/model/WQInfoObjectImpl.java @ 5838:5aa05a7a34b7

Rename modules to more fitting names.
author Sascha L. Teichmann <teichmann@intevation.de>
date Thu, 25 Apr 2013 15:23:37 +0200
parents flys-client/src/main/java/org/dive4elements/river/client/shared/model/WQInfoObjectImpl.java@821a02bbfb4e
children 172338b1407f
comparison
equal deleted inserted replaced
5837:d9901a08d0a6 5838:5aa05a7a34b7
1 package org.dive4elements.river.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