comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/map/WSPLGENLayerFacet.java @ 3300:e1cf76b3ecb4

Moved map and WSPLGEN code to subpackage 'map' in the model package. flys-artifacts/trunk@4985 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Fri, 13 Jul 2012 10:19:23 +0000
parents
children
comparison
equal deleted inserted replaced
3299:d76a889bc30d 3300:e1cf76b3ecb4
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