comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/LayerInfo.java @ 1129:da3c3e286c88

Introduced a MapfileGenerator that creates Mapserver specific mapfiles based on WSPLGEN results read from filesystem. flys-artifacts/trunk@2644 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Mon, 05 Sep 2011 14:04:03 +0000
parents
children bcf70a452646
comparison
equal deleted inserted replaced
1128:727c53fd0dc7 1129:da3c3e286c88
1 package de.intevation.flys.artifacts.model;
2
3 import java.io.File;
4
5
6 public class LayerInfo {
7
8 protected String data;
9
10 protected String type;
11 protected String identifier;
12 protected String title;
13
14
15 public LayerInfo(File data, String type, String identifier, String title) {
16 this.data = data.getName();
17 this.type = type;
18 this.identifier = identifier;
19 this.title = title;
20 }
21
22
23 public String getData() {
24 return data;
25 }
26
27
28 public String getType() {
29 return type;
30 }
31
32
33 public String getIdentifier() {
34 return identifier;
35 }
36
37
38 public String getTitle() {
39 return title;
40 }
41 }
42 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org