view flys-client/src/main/java/de/intevation/flys/client/shared/model/MeasurementStation.java @ 4265:d5d68c5bf085

Add id, kmup and operator to MeasurementStation model Also add getters for these variables
author Björn Ricks <bjoern.ricks@intevation.de>
date Fri, 26 Oct 2012 12:13:38 +0200
parents fc742c039f30
children 82c1e911dd71
line wrap: on
line source
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();

    boolean isKmUp();

    /**
     * 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();

    /**
     * Returns the ID of the measurement station
     */
    Integer getID();

    /**
     * Returns the operator of the measurement station
     */
    String getOperator();
}

http://dive4elements.wald.intevation.org