# HG changeset patch # User Raimund Renkert # 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(); }