Mercurial > dive4elements > river
comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/LayerInfo.java @ 3818:dc18457b1cef
merged flys-artifacts/pre2.7-2012-03-16
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:14:59 +0200 |
parents | dd467951335c |
children | 7a124cb11d8e |
comparison
equal
deleted
inserted
replaced
2456:60ab1054069d | 3818:dc18457b1cef |
---|---|
1 package de.intevation.flys.artifacts.model; | |
2 | |
3 | |
4 public class LayerInfo { | |
5 | |
6 protected String name; | |
7 protected String type; | |
8 protected String directory; | |
9 protected String data; | |
10 protected String connection; | |
11 protected String connectionType; | |
12 protected String extent; | |
13 protected String group; | |
14 protected String groupTitle; | |
15 protected String title; | |
16 protected String style; | |
17 protected String filter; | |
18 protected String labelItem; | |
19 | |
20 | |
21 public LayerInfo() { | |
22 } | |
23 | |
24 | |
25 public void setName(String name) { | |
26 this.name = name; | |
27 } | |
28 | |
29 | |
30 public String getName() { | |
31 return name; | |
32 } | |
33 | |
34 | |
35 public void setType(String type) { | |
36 this.type = type; | |
37 } | |
38 | |
39 | |
40 public String getType() { | |
41 return type; | |
42 } | |
43 | |
44 | |
45 public void setDirectory(String directory) { | |
46 this.directory = directory; | |
47 } | |
48 | |
49 | |
50 public String getDirectory() { | |
51 return directory; | |
52 } | |
53 | |
54 | |
55 public void setData(String data) { | |
56 this.data = data; | |
57 } | |
58 | |
59 | |
60 public String getData() { | |
61 return data; | |
62 } | |
63 | |
64 | |
65 public void setConnection(String connection) { | |
66 this.connection = connection; | |
67 } | |
68 | |
69 | |
70 public String getConnection() { | |
71 return connection; | |
72 } | |
73 | |
74 | |
75 public void setConnectionType(String connectionType) { | |
76 this.connectionType = connectionType; | |
77 } | |
78 | |
79 | |
80 public String getConnectionType() { | |
81 return connectionType; | |
82 } | |
83 | |
84 | |
85 public void setGroup(String group) { | |
86 this.group = group; | |
87 } | |
88 | |
89 | |
90 public String getGroup() { | |
91 return group; | |
92 } | |
93 | |
94 | |
95 public void setGroupTitle(String groupTitle) { | |
96 this.groupTitle = groupTitle; | |
97 } | |
98 | |
99 | |
100 public String getGroupTitle() { | |
101 return groupTitle; | |
102 } | |
103 | |
104 | |
105 public void setTitle(String title) { | |
106 this.title = title; | |
107 } | |
108 | |
109 | |
110 public String getTitle() { | |
111 return title; | |
112 } | |
113 | |
114 | |
115 public void setExtent(String extent) { | |
116 this.extent = extent; | |
117 } | |
118 | |
119 | |
120 public String getExtent() { | |
121 return extent; | |
122 } | |
123 | |
124 | |
125 public void setStyle(String style) { | |
126 this.style = style; | |
127 } | |
128 | |
129 | |
130 public String getStyle() { | |
131 return style; | |
132 } | |
133 | |
134 | |
135 public void setFilter(String filter) { | |
136 this.filter = filter; | |
137 } | |
138 | |
139 | |
140 public String getFilter() { | |
141 return filter; | |
142 } | |
143 | |
144 public void setLabelItem(String labelItem) { | |
145 this.labelItem = labelItem; | |
146 } | |
147 | |
148 public String getLabelItem() { | |
149 return labelItem; | |
150 } | |
151 } | |
152 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |