Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/WSPLGENLayerFacet.java @ 3057:febc39e77672
Make it compilable again
flys-artifacts/trunk@4633 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Mon, 11 Jun 2012 09:58:54 +0000 |
parents | ccad7a6ddaa4 |
children | 4bd3d8bbb60c |
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; } }