java/cewolf-1.0/src/main/java/de/laures/cewolf/taglib/tags/SimpleChartTag.java
author František Kučera <franta-hg@frantovo.cz>
Sat, 28 Feb 2009 21:31:02 +0100
changeset 1 639991d0808a
permissions -rw-r--r--
Rozbalená knihovna verze 1.0
     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;
    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 params, boolean useCache) {
    29         ((SimpleChartDefinition)chartDefinition).setDataProductionConfig(dsp, params, useCache);
    30     }
    31 
    32 }