comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/LayerInfo.java @ 1816:5364b86a0880

Improved styles of WMS layers. flys-artifacts/trunk@3145 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Wed, 02 Nov 2011 15:02:23 +0000
parents 1636686070f7
children e372934f0c42
comparison
equal deleted inserted replaced
1815:a97764363ba2 1816:5364b86a0880
5 5
6 protected String name; 6 protected String name;
7 protected String type; 7 protected String type;
8 protected String directory; 8 protected String directory;
9 protected String data; 9 protected String data;
10 protected String extent;
10 protected String group; 11 protected String group;
11 protected String groupTitle; 12 protected String groupTitle;
12 protected String title; 13 protected String title;
13 protected String style; 14 protected String style;
15 protected String filter;
14 16
15 17
16 public LayerInfo( 18 public LayerInfo() {
17 String name,
18 String type,
19 String directory,
20 String data,
21 String title)
22 {
23 this(name, type, directory, data, title, null, null);
24 } 19 }
25 20
26 21
27 public LayerInfo( 22 public void setName(String name) {
28 String name, 23 this.name = name;
29 String type,
30 String directory,
31 String data,
32 String title,
33 String group,
34 String groupTitle
35 ) {
36 this.name = name;
37 this.type = type;
38 this.directory = directory;
39 this.data = data;
40 this.group = group;
41 this.groupTitle = groupTitle;
42 this.title = title;
43 } 24 }
44 25
45 26
46 public String getName() { 27 public String getName() {
47 return name; 28 return name;
48 } 29 }
49 30
50 31
32 public void setType(String type) {
33 this.type = type;
34 }
35
36
51 public String getType() { 37 public String getType() {
52 return type; 38 return type;
39 }
40
41
42 public void setDirectory(String directory) {
43 this.directory = directory;
53 } 44 }
54 45
55 46
56 public String getDirectory() { 47 public String getDirectory() {
57 return directory; 48 return directory;
58 } 49 }
59 50
60 51
52 public void setData(String data) {
53 this.data = data;
54 }
55
56
61 public String getData() { 57 public String getData() {
62 return data; 58 return data;
59 }
60
61
62 public void setGroup(String group) {
63 this.group = group;
63 } 64 }
64 65
65 66
66 public String getGroup() { 67 public String getGroup() {
67 return group; 68 return group;
68 } 69 }
69 70
70 71
72 public void setGroupTitle(String groupTitle) {
73 this.groupTitle = groupTitle;
74 }
75
76
71 public String getGroupTitle() { 77 public String getGroupTitle() {
72 return groupTitle; 78 return groupTitle;
73 } 79 }
74 80
75 81
82 public void setTitle(String title) {
83 this.title = title;
84 }
85
86
76 public String getTitle() { 87 public String getTitle() {
77 return title; 88 return title;
89 }
90
91
92 public void setExtent(String extent) {
93 this.extent = extent;
94 }
95
96
97 public String getExtent() {
98 return extent;
78 } 99 }
79 100
80 101
81 public void setStyle(String style) { 102 public void setStyle(String style) {
82 this.style = style; 103 this.style = style;
84 105
85 106
86 public String getStyle() { 107 public String getStyle() {
87 return style; 108 return style;
88 } 109 }
110
111
112 public void setFilter(String filter) {
113 this.filter = filter;
114 }
115
116
117 public String getFilter() {
118 return filter;
119 }
89 } 120 }
90 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : 121 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org