diff flys-backend/src/main/java/de/intevation/flys/importer/ImportRiver.java @ 177:31895d24387e

Importer: Added info gew parser. flys-backend/trunk@1485 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Wed, 16 Mar 2011 17:01:55 +0000
parents
children 4ab2c3bd474c
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/flys-backend/src/main/java/de/intevation/flys/importer/ImportRiver.java	Wed Mar 16 17:01:55 2011 +0000
@@ -0,0 +1,46 @@
+package de.intevation.flys.importer;
+
+import java.io.File;
+
+public class ImportRiver
+{
+    protected String name;
+
+    protected File   wstFile;
+
+    protected File   bbInfoFile;
+
+    public ImportRiver() {
+    }
+
+    public ImportRiver(String name, File wstFile, File bbInfoFile) {
+        this.name       = name;
+        this.wstFile    = wstFile;
+        this.bbInfoFile = bbInfoFile;
+    }
+
+    public String getName() {
+        return name;
+    }
+
+    public void setName(String name) {
+        this.name = name;
+    }
+
+    public File getWstFile() {
+        return wstFile;
+    }
+
+    public void setWstFile(File wstFile) {
+        this.wstFile = wstFile;
+    }
+
+    public File getBBInfo() {
+        return bbInfoFile;
+    }
+
+    public void setBBInfo(File bbInfoFile) {
+        this.bbInfoFile = bbInfoFile;
+    }
+}
+// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org