d@9611: /* Copyright (C) 2011, 2012, 2013 by Bundesanstalt für Gewässerkunde d@9611: * Software engineering by Intevation GmbH d@9611: * d@9611: * This file is Free Software under the GNU AGPL (>=v3) d@9611: * and comes with ABSOLUTELY NO WARRANTY! Check out the d@9611: * documentation coming with Dive4Elements River for details. d@9611: */ d@9611: d@9611: package org.dive4elements.river.artifacts.sinfo.flood_duration; d@9611: d@9611: import org.dive4elements.river.artifacts.states.DefaultState; d@9611: d@9611: /** d@9611: * @author Ingo Weinzierl d@9611: */ d@9611: public class FloodInfrastructure extends DefaultState { d@9611: d@9611: private static final long serialVersionUID = 1L; d@9611: d@9611: protected final String getDatakey() { d@9611: return "flood_infrastructure"; d@9611: } d@9611: d@9611: @Override d@9611: protected String getUIProvider() { d@9611: d@9611: return "flood_infrastructure_panel"; d@9611: } d@9611: }