view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/fixings/QWD.java @ 4187:21f4e4b79121

Refactor GaugeDischargeCurveFacet to be able to set a facet name For adding another output of the GaugeDischargeCurveArtifact it is necessary to provide to facet instances with different names. Therefore the GaugeDischargeCurveFacet is extended to set the facet name in the constructor.
author Björn Ricks <bjoern.ricks@intevation.de>
date Fri, 19 Oct 2012 13:25:49 +0200
parents e727e3ebdf85
children
line wrap: on
line source
package de.intevation.flys.artifacts.model.fixings;

import java.util.Date;

public class QWD
extends      QWI
{
    protected double deltaW;

    public QWD() {
    }

    public QWD(double q, double w) {
        super(q, w);
    }

    public QWD(
        double  q,
        double  w,
        String  description,
        Date    date,
        boolean interpolated,
        double  deltaW,
        int     index
    ) {
        super(q, w, description, date, interpolated, index);
        this.deltaW = deltaW;
    }

    public double getDeltaW() {
        return deltaW;
    }

    public void setDeltaW(double deltaW) {
        this.deltaW = deltaW;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org