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