view flys-client/src/main/java/de/intevation/flys/client/shared/model/GaugeImpl.java @ 5503:b660090b417d

Create a new sq relation project on measurement station record click. * Added new methods to artifact service. * Added new client-side artifact. * Updated UI to have a new row in 'Messstellen-Info'.
author Raimund Renkert <rrenkert@intevation.de>
date Thu, 28 Mar 2013 15:21:15 +0100
parents ca40a5b1bb04
children
line wrap: on
line source
package de.intevation.flys.client.shared.model;


public class GaugeImpl implements Gauge {

    private String name;

    private double lower;
    private double upper;


    public GaugeImpl() {
    }


    public GaugeImpl(String name, double lower, double upper) {
        this.name  = name;
        this.lower = lower;
        this.upper = upper;
    }


    public void setName(String name) {
        this.name = name;
    }


    public String getName() {
        return name;
    }


    public void setLower(double lower) {
        this.lower = lower;
    }


    public double getLower() {
        return lower;
    }


    public void setUpper(double upper) {
        this.upper = upper;
    }


    public double getUpper() {
        return upper;
    }
}

http://dive4elements.wald.intevation.org