[Dive4elements-commits] [PATCH 05 of 11] Added member variable for discharge zone type

Wald Commits scm-commit at wald.intevation.org
Mon Dec 3 17:27:25 CET 2012


# HG changeset patch
# User Raimund Renkert <rrenkert at intevation.de>
# Date 1354550505 -3600
# Node ID 9000648153692a0798fbb7d41e9293256aaaf5c4
# Parent  25c5e344733e9a9f829cb5372e66686871a8f465
Added member variable for discharge zone type.

diff -r 25c5e344733e -r 900064815369 flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/FlowVelocityData.java
--- a/flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/FlowVelocityData.java	Mon Dec 03 16:58:13 2012 +0100
+++ b/flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/FlowVelocityData.java	Mon Dec 03 17:01:45 2012 +0100
@@ -13,7 +13,7 @@
     private TDoubleArrayList tauMain;
     private TDoubleArrayList q;
     private String zone;
-
+    private String type;
 
     protected FlowVelocityData() {
         this.km      = new TDoubleArrayList();
@@ -72,6 +72,14 @@
         return zone;
     }
 
+    public void setType(String type) {
+        this.type = type;
+    }
+
+    public String getType() {
+        return this.type;
+    }
+
     public int size() {
         return km.size();
     }


More information about the Dive4elements-commits mailing list