view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/fixings/QW.java @ 3106:23de6d678fba

FixA: Store into QWs if they are interpolated. flys-artifacts/trunk@4705 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Tue, 19 Jun 2012 14:01:47 +0000
parents ab81ffd1343e
children 88d49a0a55f0
line wrap: on
line source
package de.intevation.flys.artifacts.model.fixings;

import java.util.Date;

import java.io.Serializable;

public class QW
implements   Serializable
{
    protected double  q;
    protected double  w;
    protected String  description;
    protected Date    date;
    protected boolean interpolated;

    public QW() {
    }

    public QW(double q, double w) {
        this.q = q;
        this.w = w;
    }

    public QW(
        double  q,
        double  w,
        String  description, 
        Date    date,
        boolean interpolated
    ) {
        this(q, w);
        this.description  = description;
        this.date         = date;
        this.interpolated = interpolated;
    }

    public double getQ() {
        return q;
    }

    public void setQ(double q) {
        this.q = q;
    }

    public double getW() {
        return w;
    }

    public void setW(double w) {
        this.w = w;
    }

    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;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org