mschaefer@9035: /* Copyright (C) 2017 by Bundesanstalt für Gewässerkunde mschaefer@9035: * Software engineering by mschaefer@9035: * Björnsen Beratende Ingenieure GmbH mschaefer@9035: * Dr. Schumacher Ingenieurbüro für Wasser und Umwelt mschaefer@9035: * mschaefer@9035: * This file is Free Software under the GNU AGPL (>=v3) mschaefer@9035: * and comes with ABSOLUTELY NO WARRANTY! Check out the mschaefer@9035: * documentation coming with Dive4Elements River for details. mschaefer@9035: */ mschaefer@9035: package org.dive4elements.river.artifacts.sinfo.predefinedflowdepth; mschaefer@9035: mschaefer@9035: import java.util.Collection; mschaefer@9035: gernotbelger@9170: import org.dive4elements.river.artifacts.common.AbstractCalculationResult; mschaefer@9035: import org.dive4elements.river.artifacts.common.ResultRow; mschaefer@9035: mschaefer@9035: /** mschaefer@9035: * Contains the results of a database query of a tkh series mschaefer@9035: * mschaefer@9035: * @author Matthias Schäfer mschaefer@9035: */ gernotbelger@9170: public final class PredefinedFlowDepthQueryCalculationResult extends AbstractCalculationResult { mschaefer@9035: mschaefer@9035: private static final long serialVersionUID = 1L; mschaefer@9035: mschaefer@9035: public PredefinedFlowDepthQueryCalculationResult(final String label, final Collection rows) { gernotbelger@9170: super(label, rows); mschaefer@9035: } mschaefer@9035: }