comparison flys-client/src/main/java/de/intevation/flys/client/shared/model/RiverInfo.java @ 3713:79ad33f41977

Implement a gauge service flys-client/trunk@5469 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Bjoern Ricks <bjoern.ricks@intevation.de>
date Fri, 14 Sep 2012 13:14:45 +0000
parents
children 70976b711b7e
comparison
equal deleted inserted replaced
3712:738010779c74 3713:79ad33f41977
1 package de.intevation.flys.client.shared.model;
2
3 import java.io.Serializable;
4 import java.util.List;
5
6 /**
7 * @author <a href="mailto:bjoern.ricks@intevation.de">Björn Ricks</a>
8 */
9
10 public interface RiverInfo extends Serializable {
11
12 boolean isKmUp();
13
14 /**
15 * Start KM of the river
16 */
17 Double getKmStart();
18
19 /**
20 * End KM of the river
21 */
22 Double getKmEnd();
23
24 /**
25 * Returns the name of the river
26 */
27 String getName();
28
29 /**
30 * Returns the name of the WST unit
31 */
32 String getWstUnit();
33
34 /**
35 * Return all gauge info of the river
36 */
37 List<GaugeInfo> getGauges();
38
39 /**
40 * Returns the min q value of the river
41 */
42 Double getMinQ();
43
44 /**
45 * Returns the max q value of the river
46 */
47 Double getMaxQ();
48 }
49
50

http://dive4elements.wald.intevation.org