view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/fixings/QWI.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 de.intevation.flys.artifacts.model.QW;

import java.util.Date;

public class QWI
extends      QW
{
    protected String  description;
    protected Date    date;
    protected boolean interpolated;
    protected int     index;

    public QWI() {
    }

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

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

    public Date getDate() {
        return date;
    }

    public void setDate(Date date) {
        this.date = date;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public boolean getInterpolated() {
        return interpolated;
    }

    public void setInterpolated(boolean interpolated) {
        this.interpolated = interpolated;
    }

    public int getIndex() {
        return index;
    }

    public void setIndex(int index) {
        this.index = index;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org