comparison flys-client/src/main/java/org/dive4elements/river/client/shared/model/MeasurementStation.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/MeasurementStation.java@7320830987a3
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.Date;
5
6 /**
7 * @author <a href="mailto:bjoern.ricks@intevation.de">Björn Ricks</a>
8 */
9 public interface MeasurementStation extends Serializable {
10
11 /**
12 * Returns the name of the measurement station
13 */
14 String getName();
15
16 /**
17 * Returns the start KM of the measurement station or null if not available
18 */
19 Double getKmStart();
20
21 /**
22 * Returns the end KM of the measurement station or null if not available
23 */
24 Double getKmEnd();
25
26 boolean isKmUp();
27
28 /**
29 * Returns the station km of the measurement station or null if not
30 * available
31 */
32 Double getStation();
33
34 /**
35 * Returns the river to which this measurement station belongs
36 */
37 String getRiverName();
38
39 /**
40 * Returns the side of the river which this measurement station belongs
41 */
42 String getRiverSide();
43
44 /**
45 * Returns the type of the measurement station
46 */
47 String getMeasurementType();
48
49 /**
50 * Returns the ID of the measurement station
51 */
52 Integer getID();
53
54 /**
55 * Returns the operator of the measurement station
56 */
57 String getOperator();
58
59 /**
60 * Returns the start time of the observation at this measurement station
61 */
62 Date getStartTime();
63
64 /**
65 * Returns the end time of the observation at this measurement station
66 */
67 Date getStopTime();
68
69 /**
70 * Returns the name of the gauge in reference to this measurement station
71 */
72 String getGaugeName();
73 }

http://dive4elements.wald.intevation.org