comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/map/WSPLGENLayerFacet.java @ 3786:4adc35aa655c

merged flys-artifacts/2.9.1
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 28 Sep 2012 12:14:47 +0200
parents e1cf76b3ecb4
children
comparison
equal deleted inserted replaced
3719:e82acd5c86f7 3786:4adc35aa655c
1 package de.intevation.flys.artifacts.model.map;
2
3 import de.intevation.flys.artifacts.states.DefaultState.ComputeType;
4
5 public class WSPLGENLayerFacet
6 extends WMSLayerFacet
7 {
8 public WSPLGENLayerFacet() {
9 }
10
11
12 public WSPLGENLayerFacet(int index, String name, String description) {
13 this(index, name, description, ComputeType.FEED, null, null);
14 }
15
16
17 public WSPLGENLayerFacet(
18 int index,
19 String name,
20 String description,
21 ComputeType type,
22 String stateId,
23 String hash
24 ) {
25 super(index, name, description, type, stateId, hash);
26 }
27
28 public WSPLGENLayerFacet(
29 int index,
30 String name,
31 String description,
32 ComputeType type,
33 String stateId,
34 String hash,
35 String url
36 ) {
37 super(index, name, description, type, stateId, hash, url);
38 }
39
40
41 @Override
42 public boolean isQueryable() {
43 return true;
44 }
45 }
46 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org