1 package jp.osdl.jbento2.chart; 2 3 import org.jfree.chart.JFreeChart; 4 import org.jfree.chart.plot.PlotOrientation; 5 import org.jfree.data.general.AbstractDataset; 6 7 public interface ChartType { 8 9 JFreeChart getChart(String title, String xLabel, String yLabel, long xMin, 10 long xMax, long yMin, long yMax, AbstractDataset dataset, 11 PlotOrientation orientation, boolean legend, boolean tooltips, 12 boolean urls, boolean shape); 13 14 }