public final static Icon JFREE_CHART_ICON = resources.getIcon("JFreeChartIcon");
public JFreeChartPlugin(){
shapeCreators = new ArrayList();
shapeCreators.add(new ShapeCreator(this, PLOT_CYCLIC, null, JFREE_CHART, JFREE_CHART_ICON));
shapeCreators.add(new ShapeCreator(this, PLOT_STANDARD, null, JFREE_CHART, JFREE_CHART_ICON));
shapeCreators.add(new ShapeCreator(this, PLOT_SCATTER, null, JFREE_CHART, JFREE_CHART_ICON));
shapeCreators.add(new ShapeCreator(this, PLOT_PARAMETRIC, null, JFREE_CHART, JFREE_CHART_ICON));
shapeCreators.add(new ShapeCreator(this, METER, null, JFREE_CHART, JFREE_CHART_ICON));
shapeCreators.add(new ShapeCreator(this, AREA_CHART, null, JFREE_CHART, JFREE_CHART_ICON));
shapeCreators.add(new ShapeCreator(this, BAR_CHART, null, JFREE_CHART, JFREE_CHART_ICON));
shapeCreators.add(new ShapeCreator(this, BAR_CHAR_3D, null, JFREE_CHART, JFREE_CHART_ICON));
shapeCreators.add(new ShapeCreator(this, BAR_CHART_STACKED, null, JFREE_CHART, JFREE_CHART_ICON));
shapeCreators.add(new ShapeCreator(this, BAR_CHART_STACKED_3D, null, JFREE_CHART, JFREE_CHART_ICON));
shapeCreators.add(new ShapeCreator(this, PIE_CHART, null, JFREE_CHART, JFREE_CHART_ICON));
shapeCreators.add(new ShapeCreator(this, PIE_CHART_3D, null, JFREE_CHART, JFREE_CHART_ICON));
}