comparison flys-client/src/main/java/org/dive4elements/river/client/shared/model/DistanceInfoObjectImpl.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/DistanceInfoObjectImpl.java@d9fc58e30a53
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:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
6 */
7 public class DistanceInfoObjectImpl implements DistanceInfoObject {
8
9 protected String description;
10
11 protected Double from;
12
13 protected Double to;
14
15 protected String riverside;
16
17 protected Double bottom;
18
19 protected Double top;
20
21
22 public DistanceInfoObjectImpl() {
23 }
24
25
26 public DistanceInfoObjectImpl(
27 String description,
28 Double from,
29 Double to,
30 String riverside,
31 Double bottom,
32 Double top
33 ) {
34 this.description = description;
35 this.from = from;
36 this.to = to;
37 this.riverside = riverside;
38 this.bottom = bottom;
39 this.top = top;
40 }
41
42 public String getDescription() {
43 return description;
44 }
45
46
47 public Double getFrom() {
48 return from;
49 }
50
51
52 public Double getTo() {
53 return to;
54 }
55
56
57 public String getRiverside() {
58 return riverside;
59 }
60
61 public Double getBottom() {
62 return bottom;
63 }
64
65 public Double getTop() {
66 return top;
67 }
68 }
69 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org