Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/WSPLGENLayerFacet.java @ 3121:0b86b005bb9a
FixA: Respect the selected events and reference period correctly.
flys-artifacts/trunk@4722 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Wed, 20 Jun 2012 11:25:21 +0000 |
parents | 4bd3d8bbb60c |
children |
line wrap: on
line source
package de.intevation.flys.artifacts.model; import de.intevation.flys.artifacts.states.DefaultState.ComputeType; public class WSPLGENLayerFacet extends WMSLayerFacet { public WSPLGENLayerFacet() { } public WSPLGENLayerFacet(int index, String name, String description) { this(index, name, description, ComputeType.FEED, null, null); } public WSPLGENLayerFacet( int index, String name, String description, ComputeType type, String stateId, String hash ) { super(index, name, description, type, stateId, hash); } public WSPLGENLayerFacet( int index, String name, String description, ComputeType type, String stateId, String hash, String url ) { super(index, name, description, type, stateId, hash, url); } @Override public boolean isQueryable() { return true; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :