-
- All Superinterfaces:
Cloneable
- All Known Implementing Classes:
AbstractCategoryItemLabelGenerator,AbstractCategoryItemRenderer,ArcDialFrame,AreaRenderer,AxisEntity,AxisSpace,BarRenderer,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,FastScatterPlot,FlowEntity,FlowKey,FlowPlot,GanttRenderer,GrayPaintScale,GroupedStackedBarRenderer,HighLowItemLabelGenerator,HighLowRenderer,HistogramDataset,IntervalBarRenderer,IntervalCategoryItemLabelGenerator,IntervalCategoryToolTipGenerator,IntervalXYDelegate,IntervalXYItemLabelGenerator,IntervalXYToolTipGenerator,JFreeChartEntity,KeyedObject,KeyedObjects,KeyToGroupMap,LayeredBarRenderer,LegendItemEntity,LevelRenderer,LineAndShapeRenderer,LogarithmicAxis,LogAxis,LookupPaintScale,MatrixSeriesCollection,MeterPlot,MinMaxCategoryRenderer,ModuloAxis,MultiplePiePlot,MultipleXYSeriesLabelGenerator,NodeEntity,NodeKey,NumberAxis,PeriodAxis,PiePlot,PieSectionEntity,Plot,PlotEntity,PolarPlot,RingPlot,SamplingXYLineRenderer,ScatterRenderer,ShortTextTitle,SimpleHistogramBin,SimpleHistogramDataset,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,XYItemEntity,XYLineAndShapeRenderer,XYLineAnnotation,XYPlot,XYPointerAnnotation,XYPolygonAnnotation,XYSeriesCollection,XYShapeAnnotation,XYShapeRenderer,XYSplineRenderer,XYStepAreaRenderer,XYStepRenderer,XYTextAnnotation,XYTitleAnnotation,YIntervalRenderer,YIntervalSeriesCollection
public interface PublicCloneable extends Cloneable
An 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 Objectclone()Returns a clone of the object.
-
-
-
Method Detail
-
clone
Object clone() throws CloneNotSupportedException
Returns a clone of the object.- Returns:
- A clone.
- Throws:
CloneNotSupportedException- if cloning is not supported for some reason.
-
-