comparison flys-client/src/main/java/org/dive4elements/river/client/shared/model/RiverInfo.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/RiverInfo.java@7a889098bcc6
children 821a02bbfb4e
comparison
equal deleted inserted replaced
5833:a2bdc0f524e8 5834:f507086aa94b
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 * Returns the official number of the river
51 */
52 Long getOfficialNumber();
53
54 /**
55 * Returns the MeasurementStations on this river or null if they aren't
56 * available.
57 */
58 List<MeasurementStation> getMeasurementStations();
59 }
60
61

http://dive4elements.wald.intevation.org