Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/chart/HorizontalCrossProfileChart.java @ 657:af3f56758f59
merged gnv-artifacts/0.5
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:53 +0200 |
parents | 9697675ede21 |
children | 79401c871da4 |
comparison
equal
deleted
inserted
replaced
590:5f5f273c8566 | 657:af3f56758f59 |
---|---|
1 package de.intevation.gnv.chart; | |
2 | |
3 import java.util.Collection; | |
4 import java.util.Locale; | |
5 | |
6 import de.intevation.gnv.chart.ChartLabels; | |
7 import de.intevation.gnv.geobackend.base.Result; | |
8 | |
9 import org.apache.log4j.Logger; | |
10 | |
11 import org.jfree.chart.ChartTheme; | |
12 import org.jfree.data.general.Series; | |
13 | |
14 /** | |
15 * @author Ingo Weinzierl <ingo.weinzierl@intevation.de> | |
16 */ | |
17 public class HorizontalCrossProfileChart | |
18 extends HorizontalProfileChart | |
19 { | |
20 private static Logger log = Logger.getLogger(HorizontalCrossProfileChart.class); | |
21 | |
22 public HorizontalCrossProfileChart( | |
23 ChartLabels labels, | |
24 ChartTheme theme, | |
25 Collection parameters, | |
26 Collection measurements, | |
27 Collection dates, | |
28 Collection result, | |
29 Collection timeGaps, | |
30 Locale locale, | |
31 boolean linesVisible, | |
32 boolean shapesVisible | |
33 ) { | |
34 super( | |
35 labels, | |
36 theme, | |
37 parameters, | |
38 measurements, | |
39 dates, | |
40 result, | |
41 timeGaps, | |
42 locale, | |
43 linesVisible, | |
44 shapesVisible | |
45 ); | |
46 } | |
47 | |
48 | |
49 @Override | |
50 protected void gapDetection( | |
51 Result[] results, | |
52 Series series, | |
53 int startPos, | |
54 int endPos | |
55 ) { | |
56 // nothing to do here, gap detection is done in interpolation | |
57 } | |
58 } | |
59 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 : |