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