comparison artifacts/src/main/java/org/dive4elements/river/artifacts/model/minfo/BedDiffEpochResult.java @ 5838:5aa05a7a34b7

Rename modules to more fitting names.
author Sascha L. Teichmann <teichmann@intevation.de>
date Thu, 25 Apr 2013 15:23:37 +0200
parents flys-artifacts/src/main/java/org/dive4elements/river/artifacts/model/minfo/BedDiffEpochResult.java@bd047b71ab37
children 4897a58c8746
comparison
equal deleted inserted replaced
5837:d9901a08d0a6 5838:5aa05a7a34b7
1 package org.dive4elements.river.artifacts.model.minfo;
2
3 import java.util.Date;
4
5 import gnu.trove.TDoubleArrayList;
6
7
8 public class BedDiffEpochResult
9 extends BedDifferencesResult
10 {
11
12 protected Date start;
13 protected Date end;
14
15 public BedDiffEpochResult () {
16 super();
17 }
18
19 public BedDiffEpochResult (
20 TDoubleArrayList kms,
21 TDoubleArrayList differences,
22 TDoubleArrayList heights1,
23 TDoubleArrayList heights2,
24 Date start,
25 Date end
26 ) {
27 super(kms, differences, heights1, heights2);
28 this.start = start;
29 this.end = end;
30 }
31
32 public Date getStart() {
33 return this.start;
34 }
35
36 public void setStart(Date value) {
37 this.start = value;
38 }
39
40 public void setEnd(Date value) {
41 this.end = value;
42 }
43
44 public Date getEnd() {
45 return this.end;
46 }
47 }

http://dive4elements.wald.intevation.org