Package org.jfree.chart.util
Interface PublicCloneable
-
- All Superinterfaces:
java.lang.Cloneable
- All Known Implementing Classes:
AbstractCategoryItemLabelGenerator,AbstractCategoryItemRenderer,ArcDialFrame,AreaRenderer,AxisEntity,AxisSpace,BarRenderer,BlockContainer,BoxAndWhiskerRenderer,BoxAndWhiskerToolTipGenerator,BoxAndWhiskerXYToolTipGenerator,BubbleXYItemLabelGenerator,CandlestickRenderer,CategoryItemEntity,CategoryLabelEntity,CategoryLineAnnotation,CategoryPlot,CategoryPointerAnnotation,CategoryStepRenderer,CategoryTableXYDataset,CategoryTextAnnotation,ChartEntity,ClusteredXYBarRenderer,CombinedDomainCategoryPlot,CombinedDomainXYPlot,CombinedRangeCategoryPlot,CombinedRangeXYPlot,CompassPlot,Crosshair,CrosshairOverlay,CustomCategoryURLGenerator,CustomPieURLGenerator,CustomXYToolTipGenerator,CustomXYURLGenerator,CyclicNumberAxis,CyclicXYItemRenderer,DateAxis,DateTitle,DefaultBoxAndWhiskerCategoryDataset,DefaultCategoryDataset,DefaultCategoryItemRenderer,DefaultDrawingSupplier,DefaultFlowDataset,DefaultHeatMapDataset,DefaultHighLowDataset,DefaultIntervalXYDataset,DefaultKeyedValue,DefaultKeyedValues,DefaultKeyedValues2D,DefaultKeyedValues2DDataset,DefaultKeyedValuesDataset,DefaultMultiValueCategoryDataset,DefaultOHLCDataset,DefaultPieDataset,DefaultStatisticalCategoryDataset,DefaultTableXYDataset,DefaultValueDataset,DefaultWindDataset,DefaultXYDataset,DefaultXYItemRenderer,DefaultXYZDataset,DeviationRenderer,DeviationStepRenderer,DialBackground,DialCap,DialPlot,DialPointer,DialPointer.Pin,DialPointer.Pointer,DialTextAnnotation,DialValueIndicator,EmptyBlock,FastScatterPlot,FlowEntity,FlowKey,FlowPlot,GanttRenderer,GrayPaintScale,GroupedStackedBarRenderer,HighLowItemLabelGenerator,HighLowRenderer,HistogramDataset,IntervalBarRenderer,IntervalCategoryItemLabelGenerator,IntervalCategoryToolTipGenerator,IntervalXYDelegate,IntervalXYItemLabelGenerator,IntervalXYToolTipGenerator,JDBCCategoryDataset,JDBCPieDataset,JFreeChartEntity,KeyedObject,KeyedObjects,KeyToGroupMap,LabelBlock,LayeredBarRenderer,LegendGraphic,LegendItemBlockContainer,LegendItemEntity,LegendTitle,LevelRenderer,LineAndShapeRenderer,LogarithmicAxis,LogAxis,LookupPaintScale,MatrixSeriesCollection,MeterPlot,MinMaxCategoryRenderer,ModuloAxis,MultiplePiePlot,MultipleXYSeriesLabelGenerator,NodeEntity,NodeKey,NumberAxis,PaintScaleLegend,PeriodAxis,PiePlot,PiePlot3D,PieSectionEntity,Plot,PlotEntity,PolarPlot,RingPlot,SamplingXYLineRenderer,ScatterRenderer,ShortTextTitle,SimpleHistogramBin,SimpleHistogramDataset,Size2D,SpiderWebPlot,StackedAreaRenderer,StackedBarRenderer,StackedXYAreaRenderer,StackedXYAreaRenderer2,StackedXYBarRenderer,StandardCategoryItemLabelGenerator,StandardCategorySeriesLabelGenerator,StandardCategoryToolTipGenerator,StandardChartTheme,StandardDialFrame,StandardDialRange,StandardDialScale,StandardEntityCollection,StandardGradientPaintTransformer,StandardPieSectionLabelGenerator,StandardPieToolTipGenerator,StandardXYItemLabelGenerator,StandardXYItemRenderer,StandardXYSeriesLabelGenerator,StandardXYToolTipGenerator,StandardXYZToolTipGenerator,StatisticalBarRenderer,StatisticalLineAndShapeRenderer,SymbolAxis,SymbolicXYItemLabelGenerator,Task,TaskSeriesCollection,TextTitle,ThermometerPlot,TickLabelEntity,TimeTableXYDataset,TitleEntity,ValueAxis,VectorRenderer,VectorSeriesCollection,WaferMapPlot,WaterfallBarRenderer,WindItemRenderer,XIntervalSeriesCollection,XYAnnotationEntity,XYAreaRenderer,XYAreaRenderer2,XYBarDataset,XYBarRenderer,XYBezierRenderer,XYBlockRenderer,XYBoxAndWhiskerRenderer,XYBoxAnnotation,XYBubbleRenderer,XYDataImageAnnotation,XYDifferenceRenderer,XYDotRenderer,XYDrawableAnnotation,XYErrorRenderer,XYImageAnnotation,XYIntervalSeriesCollection,XYInversePointerAnnotation,XYItemEntity,XYLineAndShapeRenderer,XYLineAnnotation,XYNoteAnnotation,XYPlot,XYPointerAnnotation,XYPolygonAnnotation,XYSeriesCollection,XYShapeAnnotation,XYShapeRenderer,XYSplineRenderer,XYStepAreaRenderer,XYStepRenderer,XYTextAnnotation,XYTitleAnnotation,YIntervalRenderer,YIntervalSeriesCollection
public interface PublicCloneable extends java.lang.CloneableAn interface that exposes the clone() method. In order to support the cloning ofJFreeChartinstances, it is advisable to implement this interface for custom plots, renderers and other chart components. If this interface is not implemented, cloning will still be attempted via reflection.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Objectclone()Returns a clone of the object.
-