comparison flys-client/src/main/java/de/intevation/flys/client/shared/model/DistanceInfoObjectImpl.java @ 567:d9fc58e30a53

Loop through 'Unterkante' 'Oberkante' from service. flys-client/trunk@2114 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Tue, 14 Jun 2011 14:19:45 +0000
parents 79fb4d900643
children
comparison
equal deleted inserted replaced
566:3ce558193526 567:d9fc58e30a53
12 12
13 protected Double to; 13 protected Double to;
14 14
15 protected String riverside; 15 protected String riverside;
16 16
17 protected Double bottom;
18
19 protected Double top;
20
17 21
18 public DistanceInfoObjectImpl() { 22 public DistanceInfoObjectImpl() {
19 } 23 }
20 24
21 25
22 public DistanceInfoObjectImpl( 26 public DistanceInfoObjectImpl(
23 String description, 27 String description,
24 Double from, 28 Double from,
25 Double to, 29 Double to,
26 String riverside) 30 String riverside,
27 { 31 Double bottom,
32 Double top
33 ) {
28 this.description = description; 34 this.description = description;
29 this.from = from; 35 this.from = from;
30 this.to = to; 36 this.to = to;
31 this.riverside = riverside; 37 this.riverside = riverside;
38 this.bottom = bottom;
39 this.top = top;
32 } 40 }
33
34 41
35 public String getDescription() { 42 public String getDescription() {
36 return description; 43 return description;
37 } 44 }
38 45
48 55
49 56
50 public String getRiverside() { 57 public String getRiverside() {
51 return riverside; 58 return riverside;
52 } 59 }
60
61 public Double getBottom() {
62 return bottom;
63 }
64
65 public Double getTop() {
66 return top;
67 }
53 } 68 }
54 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : 69 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org