view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/HistoricalWQKms.java @ 5797:cce12c06466f

RelativePointFacet: Through minor refactoring prepared to used StaticWQKmsArtifact.
author Felix Wolfsteller <felix.wolfsteller@intevation.de>
date Wed, 24 Apr 2013 08:17:18 +0200
parents 05eeedc5b156
children
line wrap: on
line source
package de.intevation.flys.artifacts.model;

import de.intevation.flys.model.TimeInterval;


public class HistoricalWQKms extends WQKms {

    private TimeInterval timeInterval;

    public HistoricalWQKms() {
    }

    public HistoricalWQKms(double[] kms, double[] qs, double[] ws, String name,
        TimeInterval timeInterval) {
        super(kms, qs, ws, name);
        this.timeInterval = timeInterval;
    }

    public TimeInterval getTimeInterval() {
        return timeInterval;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org