Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/WSPLGENLayerFacet.java @ 3272:31168ac9c7e7
Partial fix for issue694 (heightmarks snap to nearest cross section).
flys-artifacts/trunk@4916 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Felix Wolfsteller <felix.wolfsteller@intevation.de> |
---|---|
date | Tue, 10 Jul 2012 15:31:56 +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 :