Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/chart/AbstractChart.java @ 540:80630520e25a
merged gnv-artifacts/0.4
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:49 +0200 |
parents | 22a6493e8460 |
children | 3d13fa281a7e |
comparison
equal
deleted
inserted
replaced
415:9f4a0b990d27 | 540:80630520e25a |
---|---|
1 package de.intevation.gnv.chart; | |
2 | |
3 import java.util.Collection; | |
4 import java.util.Locale; | |
5 | |
6 import org.jfree.chart.JFreeChart; | |
7 import org.jfree.chart.ChartTheme; | |
8 | |
9 /** | |
10 * @author Ingo Weinzierl <ingo.weinzierl@intevation.de> | |
11 */ | |
12 public abstract class AbstractChart | |
13 implements Chart | |
14 { | |
15 protected JFreeChart chart; | |
16 protected boolean linesVisible; | |
17 protected boolean shapesVisible; | |
18 | |
19 protected Locale locale; | |
20 | |
21 protected ChartLabels labels; | |
22 protected ChartTheme theme; | |
23 protected Collection parameters; | |
24 protected Collection measurements; | |
25 protected Collection resultSet; | |
26 protected Collection dates; | |
27 protected Collection timeGaps; | |
28 | |
29 public abstract JFreeChart generateChart(); | |
30 } | |
31 // vim:set ts=4 sw=4 si et sta sts=4 fenc=latin1 : |