comparison artifacts/src/main/java/org/dive4elements/river/artifacts/model/LayerInfo.java @ 5838:5aa05a7a34b7

Rename modules to more fitting names.
author Sascha L. Teichmann <teichmann@intevation.de>
date Thu, 25 Apr 2013 15:23:37 +0200
parents flys-artifacts/src/main/java/org/dive4elements/river/artifacts/model/LayerInfo.java@bd047b71ab37
children 4897a58c8746
comparison
equal deleted inserted replaced
5837:d9901a08d0a6 5838:5aa05a7a34b7
1 package org.dive4elements.river.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 srid;
14 protected String group;
15 protected String groupTitle;
16 protected String title;
17 protected String style;
18 protected String filter;
19 protected String labelItem;
20
21
22 public LayerInfo() {
23 }
24
25
26 public void setName(String name) {
27 this.name = name;
28 }
29
30
31 public String getName() {
32 return name;
33 }
34
35
36 public void setType(String type) {
37 this.type = type;
38 }
39
40
41 public String getType() {
42 return type;
43 }
44
45
46 public void setDirectory(String directory) {
47 this.directory = directory;
48 }
49
50
51 public String getDirectory() {
52 return directory;
53 }
54
55
56 public void setData(String data) {
57 this.data = data;
58 }
59
60
61 public String getData() {
62 return data;
63 }
64
65
66 public void setConnection(String connection) {
67 this.connection = connection;
68 }
69
70
71 public String getConnection() {
72 return connection;
73 }
74
75
76 public void setConnectionType(String connectionType) {
77 this.connectionType = connectionType;
78 }
79
80
81 public String getConnectionType() {
82 return connectionType;
83 }
84
85
86 public void setGroup(String group) {
87 this.group = group;
88 }
89
90
91 public String getGroup() {
92 return group;
93 }
94
95
96 public void setGroupTitle(String groupTitle) {
97 this.groupTitle = groupTitle;
98 }
99
100
101 public String getGroupTitle() {
102 return groupTitle;
103 }
104
105
106 public void setTitle(String title) {
107 this.title = title;
108 }
109
110
111 public String getTitle() {
112 return title;
113 }
114
115
116 public void setExtent(String extent) {
117 this.extent = extent;
118 }
119
120
121 public String getExtent() {
122 return extent;
123 }
124
125
126 public void setSrid(String srid) {
127 this.srid = srid;
128 }
129
130
131 public String getSrid() {
132 return srid;
133 }
134
135
136 public void setStyle(String style) {
137 this.style = style;
138 }
139
140
141 public String getStyle() {
142 return style;
143 }
144
145
146 public void setFilter(String filter) {
147 this.filter = filter;
148 }
149
150
151 public String getFilter() {
152 return filter;
153 }
154
155 public void setLabelItem(String labelItem) {
156 this.labelItem = labelItem;
157 }
158
159 public String getLabelItem() {
160 return labelItem;
161 }
162 }
163 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org