Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/WSPLGENLayerFacet.java @ 3130:0dd569e9b9f1
Added new methods to add domain and value axis markers to time series plots.
flys-artifacts/trunk@4731 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Wed, 20 Jun 2012 15:33:32 +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 :