view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/fixings/QWI.java @ 4241:49cb65d5932d

Improved the historical discharge calculation. The calculation now creates new HistoricalWQKms (new subclass of WQKms). Those WQKms are used to create new facets from (new) type 'HistoricalDischargeCurveFacet'. The chart generator is improved to support those facets.
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Wed, 24 Oct 2012 14:34:35 +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