Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/chart/Chart.java @ 875:5e9efdda6894
merged gnv-artifacts/1.0
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:56 +0200 |
parents | 05bf8534a35a |
children | f953c9a559d8 |
comparison
equal
deleted
inserted
replaced
722:bb3ffe7d719e | 875:5e9efdda6894 |
---|---|
1 package de.intevation.gnv.chart; | |
2 | |
3 import java.io.Serializable; | |
4 | |
5 import org.jfree.chart.JFreeChart; | |
6 | |
7 /** | |
8 * The <code>Chart</code> interface should be implemented by each type of chart. | |
9 * The class must implement a method <code>generateChart</code> which returns a | |
10 * JFreeChart object. | |
11 * | |
12 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> | |
13 */ | |
14 public interface Chart | |
15 extends Serializable | |
16 { | |
17 /** | |
18 * This method is used to create a JFreeChart of this object. | |
19 * | |
20 * @return JFreeChart object. | |
21 */ | |
22 public JFreeChart generateChart(); | |
23 } | |
24 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |