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