comparison gwt-client/src/main/java/org/dive4elements/river/client/shared/model/DistanceInfoObjectImpl.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/DistanceInfoObjectImpl.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: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