comparison flys-backend/src/main/java/de/intevation/flys/importer/ImportRange.java @ 185:a60edcfe5f53

Added new helper models for import. flys-backend/trunk@1503 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 17 Mar 2011 16:12:39 +0000
parents
children cf8cbcb6a10d
comparison
equal deleted inserted replaced
184:4ab2c3bd474c 185:a60edcfe5f53
1 package de.intevation.flys.importer;
2
3 public class ImportRange
4 {
5 public Double from;
6 public Double to;
7
8 public ImportRange() {
9 }
10
11 public ImportRange(Double from, Double to) {
12 }
13
14 public Double getFrom() {
15 return from;
16 }
17
18 public void setFrom(Double from) {
19 this.from = from;
20 }
21
22 public Double getTo() {
23 return to;
24 }
25
26 public void setTo(Double to) {
27 this.to = to;
28 }
29 }
30 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org