diff flys-backend/src/main/java/de/intevation/flys/importer/ImportGauge.java @ 184:4ab2c3bd474c

Added parsing of PEGEL.GLT files. flys-backend/trunk@1501 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 17 Mar 2011 15:21:50 +0000
parents
children a60edcfe5f53
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/ImportGauge.java	Thu Mar 17 15:21:50 2011 +0000
@@ -0,0 +1,55 @@
+package de.intevation.flys.importer;
+
+import java.io.File;
+
+public class ImportGauge
+{
+    protected double from;
+    protected double to;
+
+    protected File   staFile;
+    protected File   atFile;
+
+    public ImportGauge() {
+    }
+
+    public ImportGauge(double from, double to, File staFile, File atFile) {
+        this.from    = from;
+        this.to      = to;
+        this.staFile = staFile;
+        this.atFile  = atFile;
+    }
+
+    public void setFrom(double from) {
+        this.from = from;
+    }
+
+    public double getFrom() {
+        return from;
+    }
+
+    public void setTo(double to) {
+        this.to = to;
+    }
+
+    public double getTo() {
+        return to;
+    }
+
+    public void setStaFile(File staFile) {
+        this.staFile = staFile;
+    }
+
+    public File getStaFile() {
+        return staFile;
+    }
+
+    public void setAtFile(File atFile) {
+        this.atFile = atFile;
+    }
+
+    public File getAtFile() {
+        return atFile;
+    }
+}
+// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org