view flys-client/src/main/java/de/intevation/flys/client/shared/model/WQInfoObjectImpl.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 1e73d5a4859c
children
line wrap: on
line source
package de.intevation.flys.client.shared.model;


/**
 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a>
 */
public class WQInfoObjectImpl implements WQInfoObject {

    protected String name;

    protected String type;

    protected Double value;


    public WQInfoObjectImpl() {
    }


    public WQInfoObjectImpl(
        String name,
        String type,
        Double value)
    {
        this.name  = name;
        this.type  = type;
        this.value = value;
    }


    public String getName() {
        return name;
    }


    public String getType() {
        return type;
    }


    public Double getValue() {
        return value;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org