g@9646: /** Copyright (C) 2017 by Bundesanstalt für Gewässerkunde g@9646: * Software engineering by g@9646: * Björnsen Beratende Ingenieure GmbH g@9646: * Dr. Schumacher Ingenieurbüro für Wasser und Umwelt g@9646: * g@9646: * This file is Free Software under the GNU AGPL (>=v3) g@9646: * and comes with ABSOLUTELY NO WARRANTY! Check out the g@9646: * documentation coming with Dive4Elements River for details. g@9646: */ g@9646: package org.dive4elements.river.artifacts.model.fixings; g@9646: g@9646: import java.util.List; g@9646: g@9646: /** g@9646: * Abstraction for different fitting approaches depending on target function. g@9646: * g@9646: * @author Gernot Belger g@9646: * g@9646: */ g@9646: public interface IFittingOperation { g@9646: g@9646: Fitting execute(List data); g@9646: g@9646: }