comparison 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
comparison
equal deleted inserted replaced
176:3035d861a576 177:31895d24387e
1 package de.intevation.flys.importer;
2
3 import java.io.File;
4
5 public class ImportRiver
6 {
7 protected String name;
8
9 protected File wstFile;
10
11 protected File bbInfoFile;
12
13 public ImportRiver() {
14 }
15
16 public ImportRiver(String name, File wstFile, File bbInfoFile) {
17 this.name = name;
18 this.wstFile = wstFile;
19 this.bbInfoFile = bbInfoFile;
20 }
21
22 public String getName() {
23 return name;
24 }
25
26 public void setName(String name) {
27 this.name = name;
28 }
29
30 public File getWstFile() {
31 return wstFile;
32 }
33
34 public void setWstFile(File wstFile) {
35 this.wstFile = wstFile;
36 }
37
38 public File getBBInfo() {
39 return bbInfoFile;
40 }
41
42 public void setBBInfo(File bbInfoFile) {
43 this.bbInfoFile = bbInfoFile;
44 }
45 }
46 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org