comparison backend/src/main/java/org/dive4elements/river/importer/common/AbstractParser.java @ 9056:ddebd4c2fe93

Corrected station parsing for infrastructure import
author mschaefer
date Fri, 04 May 2018 14:05:21 +0200
parents 4c5eeaff554c
children a2a42a6bac6b
comparison
equal deleted inserted replaced
9055:df5c5614e9a7 9056:ddebd4c2fe93
302 protected void logWarning(final String message) { 302 protected void logWarning(final String message) {
303 getLog().warn(message + ";" + this.rootRelativePath); 303 getLog().warn(message + ";" + this.rootRelativePath);
304 } 304 }
305 305
306 /** 306 /**
307 * Logs an info message, appending the relative file path
308 */
309 protected void logInfo(final String message) {
310 getLog().info(message + ";" + this.rootRelativePath);
311 }
312
313 /**
314 * Logs a debug message, appending the relative file path
315 */
316 protected void logDebug(final String message) {
317 getLog().debug(message + ";" + this.rootRelativePath);
318 }
319
320 /**
321 * Logs a trace message, appending the relative file path
322 */
323 protected void logTrace(final String message) {
324 getLog().trace(message + ";" + this.rootRelativePath);
325 }
326
327 /**
307 * Creates a new series import object 328 * Creates a new series import object
308 */ 329 */
309 protected abstract HEADER createSeriesImport(final String filename); 330 protected abstract HEADER createSeriesImport(final String filename);
310 331
311 protected void handleMetaLine() { 332 protected void handleMetaLine() {

http://dive4elements.wald.intevation.org