Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/chart/DefaultHistogram.java @ 815:22c18083225e
Removed compiler warnings while JavaDoc generation.
gnv-artifacts/trunk@900 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Mon, 12 Apr 2010 06:59:33 +0000 |
parents | b1f5f2a8840f |
children | 8430269ec73b |
comparison
equal
deleted
inserted
replaced
814:9d427dd2a96a | 815:22c18083225e |
---|---|
88 super(labels, data, theme); | 88 super(labels, data, theme); |
89 this.requestParameter = requestParameter; | 89 this.requestParameter = requestParameter; |
90 } | 90 } |
91 | 91 |
92 | 92 |
93 /** | |
94 * @see de.intevation.gnv.chart.AbstractHistogram#applyDatasets() | |
95 */ | |
96 @Override | 93 @Override |
97 protected void applyDatasets() { | 94 protected void applyDatasets() { |
98 XYPlot plot = (XYPlot) chart.getPlot(); | 95 XYPlot plot = (XYPlot) chart.getPlot(); |
99 | 96 |
100 // prepare data and create add them to histogram dataset | 97 // prepare data and create add them to histogram dataset |
204 } | 201 } |
205 | 202 |
206 | 203 |
207 /** | 204 /** |
208 * Serves the number of bins depending on a given width for each bin, but | 205 * Serves the number of bins depending on a given width for each bin, but |
209 * maximum bin count is limited by {@link MAXIMAL_BINS}. | 206 * maximum bin count is limited by {@link #MAXIMAL_BINS}. |
210 * | 207 * |
211 * @param values All values in this histogram | 208 * @param values All values in this histogram |
212 * | 209 * |
213 * @return Number of bins | 210 * @return Number of bins |
214 */ | 211 */ |