001 package jp.osdl.jbento2.chart; 002 003 import org.jfree.chart.JFreeChart; 004 import org.jfree.chart.plot.PlotOrientation; 005 import org.jfree.data.general.AbstractDataset; 006 007 public interface ChartType { 008 009 JFreeChart getChart(String title, String xLabel, String yLabel, long xMin, 010 long xMax, long yMin, long yMax, AbstractDataset dataset, 011 PlotOrientation orientation, boolean legend, boolean tooltips, 012 boolean urls, boolean shape); 013 014 }