view flys-client/src/main/java/de/intevation/flys/client/shared/model/DefaultGaugeInfo.java @ 3831:dc505433173f

Use the wstunit from the river as unit for the Pegelnullpunkt flys-client/trunk@5526 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Bjoern Ricks <bjoern.ricks@intevation.de>
date Wed, 19 Sep 2012 13:18:36 +0000
parents 7a34af684ed4
children 70976b711b7e
line wrap: on
line source
package de.intevation.flys.client.shared.model;

/**
 * @author <a href="mailto:bjoern.ricks@intevation.de">Björn Ricks</a>
 */
public class DefaultGaugeInfo implements GaugeInfo {

    private String name;
    private Double start;
    private Double end;
    private Double aeo;
    private Double datum;
    private Double minq;
    private Double maxq;
    private Double minw;
    private Double maxw;
    private boolean kmup;
    private Double station;
    private String wstunit;

    public DefaultGaugeInfo() {
    }

    public DefaultGaugeInfo(
            String name,
            boolean kmup,
            Double station,
            Double start,
            Double end,
            Double datum,
            Double aeo,
            Double minq,
            Double maxq,
            Double minw,
            Double maxw,
            String wstunit)
    {
        this.name    = name;
        this.station = station;
        this.start   = start;
        this.end     = end;
        this.datum   = datum;
        this.aeo     = aeo;
        this.minq    = minq;
        this.maxq    = maxq;
        this.minw    = minw;
        this.maxw    = maxw;
        this.wstunit = wstunit;
    }
    /**
     * Returns the name of the gauge
     */
    public String getName() {
        return this.name;
    }

    /**
     * Returns the start KM of the gauge or null if not available
     */
    public Double getKmStart() {
        return this.start;
    }

    /**
     * Returns the end KM of the gauge or null if not available
     */
    public Double getKmEnd() {
        return this.end;
    }

    /**
     * Returns the mimimum Q value at this gauge or null if not available
     */
    public Double getMinQ() {
        return this.minq;
    }

    /**
     * Returns the maximum Q value at this gauge or null if not available
     */
    public Double getMaxQ() {
        return this.maxq;
    }

    /**
     * Returns the mimimum W value at this gauge or null if not available
     */
    public Double getMinW() {
        return this.minw;
    }

    /**
     * Returns the maximim W value at this gauge or null if not available
     */
    public Double getMaxW() {
        return this.maxw;
    }

    /**
     * Returns the datum value or null if not available
     */
    public Double getDatum() {
        return this.datum;
    }

    /**
     * Returns the aeo value or null if not available
     */
    public Double getAeo() {
        return this.aeo;
    }

    public boolean isKmUp() {
        return this.kmup;
    }

    /**
     * Returns the station km of the gauge or null if not available
     */
    public Double getStation() {
        return this.station;
    }

    /**
     * Returns the wst unit as a String
     */
    public String getWstUnit() {
        return this.wstunit;
    }
}

http://dive4elements.wald.intevation.org