# HG changeset patch # User Felix Wolfsteller # Date 1386261182 -3600 # Node ID d24d95b0e1f9f9d67b91691935182376f1a4249b # Parent 27aabee53f637c4321b089e83d3a2546c027db72 Doc. diff -r 27aabee53f63 -r d24d95b0e1f9 artifacts/src/main/java/org/dive4elements/river/artifacts/model/W.java --- a/artifacts/src/main/java/org/dive4elements/river/artifacts/model/W.java Thu Dec 05 17:32:34 2013 +0100 +++ b/artifacts/src/main/java/org/dive4elements/river/artifacts/model/W.java Thu Dec 05 17:33:02 2013 +0100 @@ -51,6 +51,10 @@ ws = new TDoubleArrayList(capacity); } + /** Sets the used reference system for W. + * If the W's refer to values in meters over a reference + * point (e.g. NN+m) they are in meter. If they are + * relative to the PNP of a gauge they are in centimeter. */ public void setReferenceSystem(int val) { referenceSystem = val; } @@ -58,7 +62,7 @@ /** Return the used reference system for W. * If the W's refer to values in meters over a reference * point (e.g. NN+m) they are in meter. If they are - * relative to the PNP of a gauge they are in centimeter*/ + * relative to the PNP of a gauge they are in centimeter. */ public int getReferenceSystem() { return referenceSystem; }