Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
4 | 5 | 2 | 0.957 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 4 | 934 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java |
2 | 4 | 1017 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java |
3 | 4 | 1168 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java |
4 | 4 | 1366 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java |
5 | 4 | 2441 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java |
| |||||
/** * Sets the paint to be used for all series and, if requested, sends a * {@link RendererChangeEvent} to all registered listeners. * * @param paint the paint (<code>null</code> permitted). * @param notify notify listeners? * * @deprecated This method should no longer be used (as of version 1.0.6). * It is sufficient to rely on {@link #setSeriesPaint(int, Paint, * boolean)} and {@link #setBasePaint(Paint, boolean)}. */ public void setPaint(Paint paint, boolean notify) { this.paint = paint; if (notify) { fireChangeEvent(); } } |
| |||||
/** * Sets the base paint and, if requested, sends a * {@link RendererChangeEvent} to all registered listeners. * * @param paint the paint (<code>null</code> not permitted). * @param notify notify listeners? * * @see #getBasePaint() */ public void setBasePaint(Paint paint, boolean notify) { this.basePaint = paint; if (notify) { fireChangeEvent(); } } |
| |||||
/** * Sets the fill paint for ALL series and, if requested, sends a * {@link RendererChangeEvent} to all registered listeners. * * @param paint the paint (<code>null</code> permitted). * @param notify notify listeners? * * @deprecated This method should no longer be used (as of version 1.0.6). * It is sufficient to rely on {@link #setSeriesFillPaint(int, Paint, * boolean)} and {@link #setBaseFillPaint(Paint, boolean)}. */ public void setFillPaint(Paint paint, boolean notify) { this.fillPaint = paint; if (notify) { fireChangeEvent(); } } |
| |||||
/** * Sets the outline paint for ALL series and, if requested, sends a * {@link RendererChangeEvent} to all registered listeners. * * @param paint the paint (<code>null</code> permitted). * @param notify notify listeners? * * @deprecated This method should no longer be used (as of version 1.0.6). * It is sufficient to rely on {@link #setSeriesOutlinePaint(int, * Paint, boolean)} and {@link #setBaseOutlinePaint(Paint, boolean)}. */ public void setOutlinePaint(Paint paint, boolean notify) { this.outlinePaint = paint; if (notify) { fireChangeEvent(); } } |
| |||||
/** * Sets the item label paint for ALL series and, if requested, sends a * {@link RendererChangeEvent} to all registered listeners. * * @param paint the paint. * @param notify a flag that controls whether or not listeners are * notified. * * @deprecated This method should no longer be used (as of version 1.0.6). * It is sufficient to rely on {@link #setSeriesItemLabelPaint(int, * Paint, boolean)} and {@link #setBaseItemLabelPaint(Paint, boolean)}. */ public void setItemLabelPaint(Paint paint, boolean notify) { this.itemLabelPaint = paint; if (notify) { fireChangeEvent(); } } |
| |||
/** * Sets the item label paint for ALL series and, if requested, sends a * {@link RendererChangeEvent} to all registered listeners. * * @param paint the paint. * @param notify a flag that controls whether or not listeners are * notified. * * @deprecated This method should no longer be used (as of version 1.0.6). * It is sufficient to rely on {@link #setSeriesItemLabelPaint(int, * Paint, boolean)} and {@link #setBaseItemLabelPaint(Paint, boolean)}. */ /** * Sets the outline paint for ALL series and, if requested, sends a * {@link RendererChangeEvent} to all registered listeners. * * @param paint the paint (<code>null</code> permitted). * @param notify notify listeners? * * @deprecated This method should no longer be used (as of version 1.0.6). * It is sufficient to rely on {@link #setSeriesOutlinePaint(int, * Paint, boolean)} and {@link #setBaseOutlinePaint(Paint, boolean)}. */ /** * Sets the fill paint for ALL series and, if requested, sends a * {@link RendererChangeEvent} to all registered listeners. * * @param paint the paint (<code>null</code> permitted). * @param notify notify listeners? * * @deprecated This method should no longer be used (as of version 1.0.6). * It is sufficient to rely on {@link #setSeriesFillPaint(int, Paint, * boolean)} and {@link #setBaseFillPaint(Paint, boolean)}. */ /** * Sets the base paint and, if requested, sends a * {@link RendererChangeEvent} to all registered listeners. * * @param paint the paint (<code>null</code> not permitted). * @param notify notify listeners? * * @see #getBasePaint() */ /** * Sets the paint to be used for all series and, if requested, sends a * {@link RendererChangeEvent} to all registered listeners. * * @param paint the paint (<code>null</code> permitted). * @param notify notify listeners? * * @deprecated This method should no longer be used (as of version 1.0.6). * It is sufficient to rely on {@link #setSeriesPaint(int, Paint, * boolean)} and {@link #setBasePaint(Paint, boolean)}. */ public void [[#variable18cde6e0]](Paint paint, boolean notify) { this. [[#variable18cde660]]= paint; if (notify) { fireChangeEvent(); } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18cde6e0]] | setPaint |
1 | 2 | [[#18cde6e0]] | setBasePaint |
1 | 3 | [[#18cde6e0]] | setFillPaint |
1 | 4 | [[#18cde6e0]] | setOutlinePaint |
1 | 5 | [[#18cde6e0]] | setItemLabelPaint |
2 | 1 | [[#18cde660]] | paint |
2 | 2 | [[#18cde660]] | basePaint |
2 | 3 | [[#18cde660]] | fillPaint |
2 | 4 | [[#18cde660]] | outlinePaint |
2 | 5 | [[#18cde660]] | itemLabelPaint |