comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/fixings/FixResult.java @ 3096:d7b0f52d6d04

FixA: Calculate Delta W(t) for reference points, too. flys-artifacts/trunk@4695 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 18 Jun 2012 16:00:19 +0000
parents 705d2058b682
children 19ce06eb56c3
comparison
equal deleted inserted replaced
3095:6ea299c208cd 3096:d7b0f52d6d04
8 8
9 public class FixResult 9 public class FixResult
10 implements Serializable 10 implements Serializable
11 { 11 {
12 protected Parameters parameters; 12 protected Parameters parameters;
13 protected KMIndex<QW []> referenced; 13 protected KMIndex<QWD []> referenced;
14 protected KMIndex<QW []> outliers; 14 protected KMIndex<QW []> outliers;
15 protected KMIndex<AnalysisPeriod []> analysisPeriods; 15 protected KMIndex<AnalysisPeriod []> analysisPeriods;
16 16
17 public FixResult() { 17 public FixResult() {
18 } 18 }
19 19
20 public FixResult( 20 public FixResult(
21 Parameters parameters, 21 Parameters parameters,
22 KMIndex<QW []> referenced, 22 KMIndex<QWD []> referenced,
23 KMIndex<QW []> outliers, 23 KMIndex<QW []> outliers,
24 KMIndex<AnalysisPeriod []> analysisPeriods 24 KMIndex<AnalysisPeriod []> analysisPeriods
25 ) { 25 ) {
26 this.parameters = parameters; 26 this.parameters = parameters;
27 this.referenced = referenced; 27 this.referenced = referenced;
43 43
44 public void setAnalysisPeriods(KMIndex<AnalysisPeriod []> analysisPeriods) { 44 public void setAnalysisPeriods(KMIndex<AnalysisPeriod []> analysisPeriods) {
45 this.analysisPeriods = analysisPeriods; 45 this.analysisPeriods = analysisPeriods;
46 } 46 }
47 47
48 public KMIndex<QW []> getReferenced() { 48 public KMIndex<QWD []> getReferenced() {
49 return referenced; 49 return referenced;
50 } 50 }
51 51
52 public void setReferenced(KMIndex<QW []> referenced) { 52 public void setReferenced(KMIndex<QWD []> referenced) {
53 this.referenced = referenced; 53 this.referenced = referenced;
54 } 54 }
55 55
56 public KMIndex<QW []> getOutliers() { 56 public KMIndex<QW []> getOutliers() {
57 return outliers; 57 return outliers;

http://dive4elements.wald.intevation.org