Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/chart/Chart.java @ 767:79401c871da4
Added and repaired javadoc in de.intevation.gnv.chart package.
gnv-artifacts/trunk@823 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Wed, 24 Mar 2010 14:48:55 +0000 |
parents | f5a041000357 |
children | 9a828e5a2390 |
comparison
equal
deleted
inserted
replaced
766:a23ce49423d5 | 767:79401c871da4 |
---|---|
4 | 4 |
5 import java.io.Serializable; | 5 import java.io.Serializable; |
6 | 6 |
7 | 7 |
8 /** | 8 /** |
9 * @author Ingo Weinzierl <ingo.weinzierl@intevation.de> | 9 * The <code>Chart</code> interface should be implemented by each type of chart. |
10 * The class must implement a method <code>generateChart</code> which returns a | |
11 * JFreeChart object. | |
12 * | |
13 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> | |
10 */ | 14 */ |
11 public interface Chart | 15 public interface Chart |
12 extends Serializable | 16 extends Serializable |
13 { | 17 { |
18 /** | |
19 * This method is used to create a JFreeChart of this object. | |
20 * | |
21 * @return JFreeChart object. | |
22 */ | |
14 public JFreeChart generateChart(); | 23 public JFreeChart generateChart(); |
15 } | 24 } |