comparison 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
comparison
equal deleted inserted replaced
183:222f4db3430a 184:4ab2c3bd474c
1 package de.intevation.flys.importer;
2
3 import java.io.File;
4
5 public class ImportGauge
6 {
7 protected double from;
8 protected double to;
9
10 protected File staFile;
11 protected File atFile;
12
13 public ImportGauge() {
14 }
15
16 public ImportGauge(double from, double to, File staFile, File atFile) {
17 this.from = from;
18 this.to = to;
19 this.staFile = staFile;
20 this.atFile = atFile;
21 }
22
23 public void setFrom(double from) {
24 this.from = from;
25 }
26
27 public double getFrom() {
28 return from;
29 }
30
31 public void setTo(double to) {
32 this.to = to;
33 }
34
35 public double getTo() {
36 return to;
37 }
38
39 public void setStaFile(File staFile) {
40 this.staFile = staFile;
41 }
42
43 public File getStaFile() {
44 return staFile;
45 }
46
47 public void setAtFile(File atFile) {
48 this.atFile = atFile;
49 }
50
51 public File getAtFile() {
52 return atFile;
53 }
54 }
55 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org