comparison flys-client/src/main/java/de/intevation/flys/client/shared/model/GaugeInfo.java @ 4980:e70ff0a600a3

flys-client: Whitespace and doc cosemtics.
author Felix Wolfsteller <felix.wolfsteller@intevation.de>
date Thu, 14 Feb 2013 09:29:51 +0100
parents 22cd60315e08
children
comparison
equal deleted inserted replaced
4979:4c76c5f69eaf 4980:e70ff0a600a3
6 * @author <a href="mailto:bjoern.ricks@intevation.de">Björn Ricks</a> 6 * @author <a href="mailto:bjoern.ricks@intevation.de">Björn Ricks</a>
7 */ 7 */
8 public interface GaugeInfo extends Serializable { 8 public interface GaugeInfo extends Serializable {
9 9
10 /** 10 /**
11 * Returns the name of the gauge 11 * Returns the name of the gauge.
12 */ 12 */
13 String getName(); 13 String getName();
14 14
15 /** 15 /**
16 * Returns the start KM of the gauge or null if not available 16 * Returns the start KM of the gauge or null if not available.
17 */ 17 */
18 Double getKmStart(); 18 Double getKmStart();
19 19
20 /** 20 /**
21 * Returns the end KM of the gauge or null if not available 21 * Returns the end KM of the gauge or null if not available.
22 */ 22 */
23 Double getKmEnd(); 23 Double getKmEnd();
24 24
25 /** 25 /**
26 * Returns the mimimum Q value at this gauge or null if not available 26 * Returns the mimimum Q value at this gauge or null if not available.
27 */ 27 */
28 Double getMinQ(); 28 Double getMinQ();
29 29
30 /** 30 /**
31 * Returns the maximum Q value at this gauge or null if not available 31 * Returns the maximum Q value at this gauge or null if not available.
32 */ 32 */
33 Double getMaxQ(); 33 Double getMaxQ();
34 34
35 /** 35 /**
36 * Returns the mimimum W value at this gauge or null if not available 36 * Returns the mimimum W value at this gauge or null if not available.
37 */ 37 */
38 Double getMinW(); 38 Double getMinW();
39 39
40 /** 40 /**
41 * Returns the maximim W value at this gauge or null if not available 41 * Returns the maximim W value at this gauge or null if not available.
42 */ 42 */
43 Double getMaxW(); 43 Double getMaxW();
44 44
45 /** 45 /**
46 * Returns the datum value or null if not available 46 * Returns the datum value or null if not available.
47 */ 47 */
48 Double getDatum(); 48 Double getDatum();
49 49
50 /** 50 /**
51 * Returns the aeo value or null if not available 51 * Returns the aeo value or null if not available.
52 */ 52 */
53 Double getAeo(); 53 Double getAeo();
54 54
55 boolean isKmUp(); 55 boolean isKmUp();
56 56
57 /** 57 /**
58 * Returns the station km of the gauge or null if not available 58 * Returns the station km of the gauge or null if not available.
59 */ 59 */
60 Double getStation(); 60 Double getStation();
61 61
62 /** 62 /**
63 * Returns the wst unit as a String 63 * Returns the wst unit as a String.
64 */ 64 */
65 String getWstUnit(); 65 String getWstUnit();
66 66
67 /** 67 /**
68 * Returns the official number of this gauge 68 * Returns the official number of this gauge.
69 */ 69 */
70 Long getOfficialNumber(); 70 Long getOfficialNumber();
71 71
72 /** 72 /**
73 * Returns the river to which this gauge belongs 73 * Returns the river to which this gauge belongs.
74 */ 74 */
75 String getRiverName(); 75 String getRiverName();
76 } 76 }

http://dive4elements.wald.intevation.org