teichmann@5863: /* Copyright (C) 2011, 2012, 2013 by Bundesanstalt für Gewässerkunde teichmann@5863: * Software engineering by Intevation GmbH teichmann@5863: * teichmann@5863: * This file is Free Software under the GNU AGPL (>=v3) teichmann@5863: * and comes with ABSOLUTELY NO WARRANTY! Check out the teichmann@5863: * documentation coming with Dive4Elements River for details. teichmann@5863: */ teichmann@5863: teichmann@5831: package org.dive4elements.river.artifacts.model; ingo@4242: teichmann@5831: import org.dive4elements.river.model.TimeInterval; ingo@4242: ingo@4242: ingo@4242: public class HistoricalWQKms extends WQKms { ingo@4242: ingo@4242: private TimeInterval timeInterval; ingo@4242: ingo@4242: public HistoricalWQKms() { ingo@4242: } ingo@4242: ingo@4242: public HistoricalWQKms(double[] kms, double[] qs, double[] ws, String name, ingo@4242: TimeInterval timeInterval) { ingo@4242: super(kms, qs, ws, name); ingo@4242: this.timeInterval = timeInterval; ingo@4242: } ingo@4242: ingo@4242: public TimeInterval getTimeInterval() { ingo@4242: return timeInterval; ingo@4242: } ingo@4242: } felix@5335: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :