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