comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/minfo/BedDiffEpochResult.java @ 3898:95d699c769fb

Bedheight difference calculation has chart outpus now. flys-artifacts/trunk@5562 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Raimund Renkert <raimund.renkert@intevation.de>
date Fri, 21 Sep 2012 14:29:32 +0000
parents a1c79d84e3cd
children 2904ecca4663
comparison
equal deleted inserted replaced
3897:bce2dd4310a6 3898:95d699c769fb
1 package de.intevation.flys.artifacts.model.minfo; 1 package de.intevation.flys.artifacts.model.minfo;
2
3 import java.util.Date;
2 4
3 import gnu.trove.TDoubleArrayList; 5 import gnu.trove.TDoubleArrayList;
4 6
5 7
6 public class BedDiffEpochResult 8 public class BedDiffEpochResult
7 extends BedDifferencesResult 9 extends BedDifferencesResult
8 { 10 {
9 11
12 protected Date start;
13 protected Date end;
14
10 public BedDiffEpochResult () { 15 public BedDiffEpochResult () {
11 super(); 16 super();
12 } 17 }
13 18
14 public BedDiffEpochResult ( 19 public BedDiffEpochResult (
15 TDoubleArrayList kms, 20 TDoubleArrayList kms,
16 TDoubleArrayList differences, 21 TDoubleArrayList differences,
17 TDoubleArrayList morphWidth 22 TDoubleArrayList heights1,
23 TDoubleArrayList heights2,
24 Date start,
25 Date end
18 ) { 26 ) {
19 super(kms, differences, morphWidth); 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 Date getEnd() {
37 return this.end;
20 } 38 }
21 } 39 }

http://dive4elements.wald.intevation.org