1 /*
2 * WKB4J - WKB reader for geographical mapping toolkits
3 * (C) 2002,2003, David Garnier, dgarnier@users.sourceforge.net
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation,
8 * version 2.1 of the License.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 * or visit the web to http://www.gnu.org.
19 *
20 */
21 package org.wkb4j.factories;
22
23 import org.apache.log4j.Logger;
24
25 /***
26 * This Factory dones nothing.
27 * @author David Garnier
28 * @version $Revision: 1.6 $ $Date: 2003/06/23 20:53:58 $
29 */
30 public class EmptyWKBFactory extends LoggingWKBFactory {
31 protected static Logger log = Logger.getLogger(EmptyWKBFactory.class);
32
33 public EmptyWKBFactory() {
34 super();
35 }
36
37 /***
38 * @see org.wkb4j.engine.WKBFactory#beginWork()
39 */
40 public void beginWork() {
41 super.beginWork();
42
43 }
44
45 /***
46 * @see org.wkb4j.engine.WKBFactory#endWork()
47 */
48 public void endWork() {
49 super.endWork();
50
51 }
52
53 /***
54 * @see org.wkb4j.engine.WKBFactory#abortWork()
55 */
56 public void abortWork() {
57 super.abortWork();
58
59 }
60
61 /***
62 * @see org.wkb4j.engine.WKBFactory#beginUnit()
63 */
64 public void beginUnit(String[] words, int[] values) {
65 super.beginUnit(words, values);
66 }
67
68 /***
69 * @see org.wkb4j.engine.WKBFactory#endUnit()
70 */
71 public void endUnit() {
72 super.endUnit();
73 }
74
75 /***
76 * @see org.wkb4j.engine.WKBFactory#abortUnit()
77 */
78 public void abortUnit() {
79 super.abortUnit();
80 }
81
82 /***
83 * @see org.wkb4j.engine.WKBFactory#beginGeometryCollection()
84 */
85 public boolean beginGeometryCollection(int count) {
86 boolean retval = super.beginGeometryCollection(count);
87
88 return retval;
89 }
90
91 /***
92 * @see org.wkb4j.engine.WKBFactory#endGeometryCollection()
93 */
94 public boolean endGeometryCollection() {
95 boolean retval = super.endGeometryCollection();
96
97 return retval;
98 }
99
100 /***
101 * @see org.wkb4j.engine.WKBFactory#abortGeometryCollection()
102 */
103 public void abortGeometryCollection() {
104 super.abortGeometryCollection();
105
106 }
107
108 /***
109 * @see org.wkb4j.engine.WKBFactory#beginLineString()
110 */
111 public boolean beginLineString(int count) {
112 boolean retval = super.beginLineString(count);
113
114 return retval;
115 }
116
117 /***
118 * @see org.wkb4j.engine.WKBFactory#endLineString()
119 */
120 public boolean endLineString() {
121 boolean retval = super.endLineString();
122
123 return retval;
124 }
125
126 /***
127 * @see org.wkb4j.engine.WKBFactory#abortLineString()
128 */
129 public void abortLineString() {
130 super.abortLineString();
131
132 }
133
134 /***
135 * @see org.wkb4j.engine.WKBFactory#beginMultiLineString()
136 */
137 public boolean beginMultiLineString(int count) {
138 boolean retval = super.beginMultiLineString(count);
139
140 return retval;
141 }
142
143 /***
144 * @see org.wkb4j.engine.WKBFactory#endMultiLineString()
145 */
146 public boolean endMultiLineString() {
147 boolean retval = super.endMultiLineString();
148
149 return retval;
150 }
151
152 /***
153 * @see org.wkb4j.engine.WKBFactory#abortMultiLineString()
154 */
155 public void abortMultiLineString() {
156 super.abortMultiLineString();
157 }
158
159 /***
160 * @see org.wkb4j.engine.WKBFactory#beginPoint()
161 */
162 public boolean beginPoint() {
163 boolean retval = super.beginPoint();
164
165 return retval;
166 }
167
168 /***
169 * @see org.wkb4j.engine.WKBFactory#endPoint()
170 */
171 public boolean endPoint() {
172 boolean retval = super.endPoint();
173
174 return retval;
175 }
176
177 /***
178 * @see org.wkb4j.engine.WKBFactory#abortPoint()
179 */
180 public void abortPoint() {
181 super.abortPoint();
182
183 }
184
185 /***
186 * @see org.wkb4j.engine.WKBFactory#beginMultiPoint()
187 */
188 public boolean beginMultiPoint(int count) {
189 boolean retval = super.beginMultiPoint(count);
190
191 return retval;
192 }
193
194 /***
195 * @see org.wkb4j.engine.WKBFactory#endMultiPoint()
196 */
197 public boolean endMultiPoint() {
198 boolean retval = super.endMultiPoint();
199
200 return retval;
201 }
202
203 /***
204 * @see org.wkb4j.engine.WKBFactory#abortMultiPoint()
205 */
206 public void abortMultiPoint() {
207 super.abortMultiPoint();
208 }
209
210 /***
211 * @see org.wkb4j.engine.WKBFactory#beginMultiPolygon()
212 */
213 public boolean beginMultiPolygon(int count) {
214 boolean retval = super.beginMultiPolygon(count);
215
216 return retval;
217 }
218
219 /***
220 * @see org.wkb4j.engine.WKBFactory#endMultiPolygon()
221 */
222 public boolean endMultiPolygon() {
223 boolean retval = super.endMultiPolygon();
224
225 return retval;
226 }
227
228 /***
229 * @see org.wkb4j.engine.WKBFactory#abortMultiPolygon()
230 */
231 public void abortMultiPolygon() {
232 super.abortMultiPolygon();
233
234 }
235
236 /***
237 * @see org.wkb4j.engine.WKBFactory#beginPolygon()
238 */
239 public boolean beginPolygon(int count) {
240 boolean retval = super.beginPolygon(count);
241
242 return retval;
243 }
244
245 /***
246 * @see org.wkb4j.engine.WKBFactory#endPolygon()
247 */
248 public boolean endPolygon() {
249 boolean retval = super.endPolygon();
250
251 return retval;
252 }
253
254 /***
255 * @see org.wkb4j.engine.WKBFactory#abortPolygon()
256 */
257 public void abortPolygon() {
258 super.abortPolygon();
259 }
260
261 /***
262 * @see org.wkb4j.engine.WKBFactory#beginPolygon()
263 */
264 public boolean beginLinearRing(int count) {
265 boolean retval = super.beginLinearRing(count);
266
267 return retval;
268 }
269
270 /***
271 * @see org.wkb4j.engine.WKBFactory#endLinearRing()
272 */
273 public boolean endLinearRing() {
274 boolean retval = super.endLinearRing();
275
276 return retval;
277 }
278
279 /***
280 * @see org.wkb4j.engine.WKBFactory#abortLinearRing()
281 */
282 public void abortLinearRing() {
283 super.abortLinearRing();
284 }
285
286 /***
287 * @see org.wkb4j.engine.WKBFactory#addPoints(double[])
288 */
289 public boolean addPoints(double[] points) {
290 boolean retval = super.addPoints(points);
291 return retval;
292 }
293 }
This page was automatically generated by Maven