Mercurial > dive4elements > river
changeset 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 | 5da024c2af62 |
children | 7a889098bcc6 |
files | flys-client/src/main/java/de/intevation/flys/client/client/services/RiverInfoService.java flys-client/src/main/java/de/intevation/flys/client/client/services/RiverInfoServiceAsync.java flys-client/src/main/java/de/intevation/flys/client/server/RiverInfoServiceImpl.java flys-client/src/main/java/de/intevation/flys/client/shared/model/DefaultMeasurementStation.java flys-client/src/main/java/de/intevation/flys/client/shared/model/MeasurementStation.java |
diffstat | 2 files changed, 138 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flys-client/src/main/java/de/intevation/flys/client/shared/model/DefaultMeasurementStation.java Wed Oct 24 16:57:53 2012 +0200 @@ -0,0 +1,93 @@ +package de.intevation.flys.client.shared.model; + +/** + * @author <a href="mailto:bjoern.ricks@intevation.de">Björn Ricks</a> + */ +public class DefaultMeasurementStation implements MeasurementStation { + + private String name; + private Double start; + private Double end; + private Double station; + private String rivername; + private String measurementtype; + private String riverside; + + public DefaultMeasurementStation() { + } + + public DefaultMeasurementStation( + String rivername, + String name, + Double station, + Double start, + Double end, + String riverside, + String measurementtype) + { + this.rivername = rivername; + this.name = name; + this.station = station; + this.start = start; + this.end = end; + this.riverside = riverside; + this.measurementtype = measurementtype; + } + + /** + * Returns the name of the measurement station + */ + @Override + public String getName() { + return this.name; + } + + /** + * Returns the start KM of the measurement station or null if not available + */ + @Override + public Double getKmStart() { + return this.start; + } + + /** + * Returns the end KM of the measurement station or null if not available + */ + @Override + public Double getKmEnd() { + return this.end; + } + + /** + * Returns the river to which this measurement station belongs + */ + @Override + public String getRiverName() { + return this.rivername; + } + + /** + * Returns the type of the measurement station + */ + @Override + public String getMeasurementType() { + return this.measurementtype; + } + + /** + * Returns the station km of this measurement station + */ + @Override + public Double getStation() { + return this.station; + } + + + /** + * Returns the side of the river where this measurement station belongs + */ + @Override + public String getRiverSide() { + return this.riverside; + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flys-client/src/main/java/de/intevation/flys/client/shared/model/MeasurementStation.java Wed Oct 24 16:57:53 2012 +0200 @@ -0,0 +1,45 @@ +package de.intevation.flys.client.shared.model; + +import java.io.Serializable; + +/** + * @author <a href="mailto:bjoern.ricks@intevation.de">Björn Ricks</a> + */ +public interface MeasurementStation extends Serializable { + + /** + * Returns the name of the measurement station + */ + String getName(); + + /** + * Returns the start KM of the measurement station or null if not available + */ + Double getKmStart(); + + /** + * Returns the end KM of the measurement station or null if not available + */ + Double getKmEnd(); + + /** + * Returns the station km of the measurement station or null if not + * available + */ + Double getStation(); + + /** + * Returns the river to which this measurement station belongs + */ + String getRiverName(); + + /** + * Returns the side of the river which this measurement station belongs + */ + String getRiverSide(); + + /** + * Returns the type of the measurement station + */ + String getMeasurementType(); +}