# HG changeset patch # User Felix Wolfsteller # Date 1385619996 -3600 # Node ID b45f6c0b0ba4dc311638c312588f4d0a8a5e049d # Parent 974ec4eba152eac523ba6afe2cc39a13604fb476 Cosmetics, doc fix. diff -r 974ec4eba152 -r b45f6c0b0ba4 artifacts/src/main/java/org/dive4elements/river/artifacts/model/WstLine.java --- a/artifacts/src/main/java/org/dive4elements/river/artifacts/model/WstLine.java Wed Nov 27 19:14:01 2013 +0100 +++ b/artifacts/src/main/java/org/dive4elements/river/artifacts/model/WstLine.java Thu Nov 28 07:26:36 2013 +0100 @@ -73,17 +73,19 @@ return ws.size() > idx ? ws.get(idx) : -1d; } + /** - * Returns the W value at index idx of this line. + * Returns the Q value at index idx of this line. * - * @param idx The position of the desired W value. + * @param idx The position of the desired Q value. * - * @return the W at position idx. + * @return the Q at position idx. */ public double getQ(int idx) { return qs.size() > idx ? qs.get(idx) : -1d; } + /** * Returns the Q values of this line. *