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@4241: ingo@4241: import java.io.Serializable; ingo@4241: ingo@4241: ingo@4241: public class HistoricalDischargeData implements Serializable { ingo@4241: ingo@4241: private WQKms[] wqs; ingo@4241: private WQTimerange[] wqTimeranges; ingo@4241: ingo@4241: public HistoricalDischargeData() { teichmann@5962: wqs = new WQKms[0]; teichmann@5962: wqTimeranges = new WQTimerange[0]; ingo@4241: } ingo@4241: ingo@4241: public HistoricalDischargeData(WQTimerange[] wqTimeranges, WQKms[] wqs) { ingo@4241: this.wqTimeranges = wqTimeranges; ingo@4241: this.wqs = wqs; ingo@4241: } ingo@4241: ingo@4241: public WQTimerange[] getWQTimeranges() { ingo@4241: return wqTimeranges; ingo@4241: } ingo@4241: ingo@4241: public WQ[] getWQs() { ingo@4241: return wqs; ingo@4241: } ingo@4241: } felix@5335: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :