KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > de > laures > cewolf > taglib > tags > SimpleChartTag


1 /*
2  * Created on 13.04.2003
3  *
4  * To change the template for this generated file go to
5  * Window>Preferences>Java>Code Generation>Code and Comments
6  */

7 package de.laures.cewolf.taglib.tags;
8
9 import java.util.Map JavaDoc;
10
11 import de.laures.cewolf.DatasetProducer;
12 import de.laures.cewolf.taglib.AbstractChartDefinition;
13 import de.laures.cewolf.taglib.DataAware;
14 import de.laures.cewolf.taglib.SimpleChartDefinition;
15
16 /**
17  * @author guido
18  *
19  * To change the template for this generated type comment go to
20  * Window>Preferences>Java>Code Generation>Code and Comments
21  */

22 public class SimpleChartTag extends AbstractChartTag implements DataAware{
23     
24     protected AbstractChartDefinition createChartDefinition() {
25         return new SimpleChartDefinition();
26     }
27
28      public void setDataProductionConfig(DatasetProducer dsp, Map JavaDoc params, boolean useCache) {
29         ((SimpleChartDefinition)chartDefinition).setDataProductionConfig(dsp, params, useCache);
30     }
31
32 }
33
Popular Tags