1 37 38 package org.jfree.chart.resources; 39 40 import java.util.ListResourceBundle ; 41 42 45 public class JFreeChartResources extends ListResourceBundle { 46 47 52 public Object [][] getContents() { 53 return CONTENTS; 54 } 55 56 57 private static final Object [][] CONTENTS = { 58 59 {"project.name", "JFreeChart"}, 60 {"project.version", "1.0.0-pre2"}, 61 {"project.info", "http://www.jfree.org/jfreechart/index.html"}, 62 {"project.copyright", 63 "(C)opyright 2000-2005, by Object Refinery Limited and Contributors"} 64 65 }; 66 67 } 68 | Popular Tags |