comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/minfo/BedDifferencesResult.java @ 3887:a1c79d84e3cd

New calcultion in MINFO: Bed height difference calculation. flys-artifacts/trunk@5538 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Raimund Renkert <raimund.renkert@intevation.de>
date Thu, 20 Sep 2012 09:34:48 +0000
parents
children 95d699c769fb
comparison
equal deleted inserted replaced
3886:633fbb61a0cc 3887:a1c79d84e3cd
1 package de.intevation.flys.artifacts.model.minfo;
2
3 import gnu.trove.TDoubleArrayList;
4
5 import java.io.Serializable;
6
7
8 public class BedDifferencesResult
9 implements Serializable
10 {
11
12 protected TDoubleArrayList kms;
13 protected TDoubleArrayList differences;
14 protected TDoubleArrayList morphWidth;
15
16 public BedDifferencesResult () {
17 kms = new TDoubleArrayList();
18 differences = new TDoubleArrayList();
19 morphWidth = new TDoubleArrayList();
20 }
21
22 public BedDifferencesResult(
23 TDoubleArrayList kms,
24 TDoubleArrayList differences,
25 TDoubleArrayList morpWidth
26 ) {
27 this.kms = kms;
28 this.differences = differences;
29 this.morphWidth = morpWidth;
30 }
31
32 public TDoubleArrayList getKms() {
33 return this.kms;
34 }
35
36 public TDoubleArrayList getDifferences() {
37 return this.differences;
38 }
39
40 public TDoubleArrayList getMorphWidth() {
41 return this.morphWidth;
42 }
43 }

http://dive4elements.wald.intevation.org