1 package com.wikihouse.wildcats0201.jdbcchart.dto; 2 3 import org.jfree.chart.JFreeChart; 4 5 /*** 6 * <B>FileType </B>. 生成されるグラフのタイプ 7 * 8 * @author $Author: wildcats $ 9 * @version $Revision: 5 $ 10 */ 11 public interface FileType { 12 13 public void saveChart(String fileName, JFreeChart chart); 14 15 static final String JPG = "jpg"; 16 static final String PNG = "png"; 17 18 }