comparison flys-client/src/main/java/de/intevation/flys/client/shared/model/MeasurementStation.java @ 4248:fc742c039f30

Add model for MeasurementStation client side Add a client mode representing the MeasurementStation
author Björn Ricks <bjoern.ricks@intevation.de>
date Wed, 24 Oct 2012 16:57:53 +0200
parents
children d5d68c5bf085
comparison
equal deleted inserted replaced
4247:5da024c2af62 4248:fc742c039f30
1 package de.intevation.flys.client.shared.model;
2
3 import java.io.Serializable;
4
5 /**
6 * @author <a href="mailto:bjoern.ricks@intevation.de">Björn Ricks</a>
7 */
8 public interface MeasurementStation extends Serializable {
9
10 /**
11 * Returns the name of the measurement station
12 */
13 String getName();
14
15 /**
16 * Returns the start KM of the measurement station or null if not available
17 */
18 Double getKmStart();
19
20 /**
21 * Returns the end KM of the measurement station or null if not available
22 */
23 Double getKmEnd();
24
25 /**
26 * Returns the station km of the measurement station or null if not
27 * available
28 */
29 Double getStation();
30
31 /**
32 * Returns the river to which this measurement station belongs
33 */
34 String getRiverName();
35
36 /**
37 * Returns the side of the river which this measurement station belongs
38 */
39 String getRiverSide();
40
41 /**
42 * Returns the type of the measurement station
43 */
44 String getMeasurementType();
45 }

http://dive4elements.wald.intevation.org