# HG changeset patch # User Felix Wolfsteller # Date 1366108603 -7200 # Node ID 0cab1c884e72114e47512e9b085a51a9a53513fc # Parent ea183a2eee0bbf5e681f60c4a574aceeb61de7ec Doc. diff -r ea183a2eee0b -r 0cab1c884e72 flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/FixingsOverview.java --- a/flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/FixingsOverview.java Tue Apr 16 12:36:15 2013 +0200 +++ b/flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/FixingsOverview.java Tue Apr 16 12:36:43 2013 +0200 @@ -39,6 +39,7 @@ "WHERE" + " name = :name"; + /** All kind-2 wsts from given river. */ public static final String SQL_FIXINGS = "SELECT" + " id AS wst_id," + @@ -47,6 +48,7 @@ "WHERE" + " river_id = :river_id AND kind = 2"; + /** All columns from given wst. */ public static final String SQL_FIXING_COLUMNS = "SELECT" + " wc.id AS wst_column_id," + @@ -327,6 +329,11 @@ } } + /** + * @param allColumns[out] Columns will be put here. + * @param range can be null. + * @param filter filter to apply. + */ public void addAllColumns( List allColumns, Range range, @@ -562,6 +569,7 @@ } } // class IdFilter + /** Accept Fixing columns whose id is in id list. */ public static class IdsFilter implements Fixing.Filter { protected int [] columnIds;