franta-hg@1: /* franta-hg@1: * Created on 13.04.2003 franta-hg@1: * franta-hg@1: * To change the template for this generated file go to franta-hg@1: * Window>Preferences>Java>Code Generation>Code and Comments franta-hg@1: */ franta-hg@1: package de.laures.cewolf.taglib.tags; franta-hg@1: franta-hg@1: import java.util.Map; franta-hg@1: franta-hg@1: import de.laures.cewolf.DatasetProducer; franta-hg@1: import de.laures.cewolf.taglib.AbstractChartDefinition; franta-hg@1: import de.laures.cewolf.taglib.DataAware; franta-hg@1: import de.laures.cewolf.taglib.SimpleChartDefinition; franta-hg@1: franta-hg@1: /** franta-hg@1: * @author guido franta-hg@1: * franta-hg@1: * To change the template for this generated type comment go to franta-hg@1: * Window>Preferences>Java>Code Generation>Code and Comments franta-hg@1: */ franta-hg@1: public class SimpleChartTag extends AbstractChartTag implements DataAware{ franta-hg@1: franta-hg@1: protected AbstractChartDefinition createChartDefinition() { franta-hg@1: return new SimpleChartDefinition(); franta-hg@1: } franta-hg@1: franta-hg@1: public void setDataProductionConfig(DatasetProducer dsp, Map params, boolean useCache) { franta-hg@1: ((SimpleChartDefinition)chartDefinition).setDataProductionConfig(dsp, params, useCache); franta-hg@1: } franta-hg@1: franta-hg@1: }