Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
7 | 3 | 2 | 0.968 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 7 | 1208 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java |
2 | 7 | 1406 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java |
3 | 7 | 2527 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java |
| |||||
/** * Sets the base fill 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 #getBaseFillPaint() */ public void setBaseFillPaint(Paint paint, boolean notify) { if (paint == null) { throw new IllegalArgumentException("Null \'paint\' argument."); } this.baseFillPaint = paint; if (notify) { fireChangeEvent(); } } |
| |||||
/** * Sets the base outline 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 #getBaseOutlinePaint() */ public void setBaseOutlinePaint(Paint paint, boolean notify) { if (paint == null) { throw new IllegalArgumentException("Null \'paint\' argument."); } this.baseOutlinePaint = paint; if (notify) { fireChangeEvent(); } } |
| |||||
/** * Sets the base item label paint and, if requested, sends a * {@link RendererChangeEvent} to all registered listeners.. * * @param paint the paint (<code>null</code> not permitted). * @param notify a flag that controls whether or not listeners are * notified. * * @see #getBaseItemLabelPaint() */ public void setBaseItemLabelPaint(Paint paint, boolean notify) { if (paint == null) { throw new IllegalArgumentException("Null \'paint\' argument."); } this.baseItemLabelPaint = paint; if (notify) { fireChangeEvent(); } } |
| |||
/** * Sets the base item label paint and, if requested, sends a * {@link RendererChangeEvent} to all registered listeners.. * * @param paint the paint (<code>null</code> not permitted). * @param notify a flag that controls whether or not listeners are * notified. * * @see #getBaseItemLabelPaint() */ /** * Sets the base outline 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 #getBaseOutlinePaint() */ /** * Sets the base fill 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 #getBaseFillPaint() */ public void [[#variable18db2620]](Paint paint, boolean notify) { if (paint == null) { throw new IllegalArgumentException("Null \'paint\' argument."); } this. [[#variable18db25c0]]= paint; if (notify) { fireChangeEvent(); } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18db2620]] | setBaseFillPaint |
1 | 2 | [[#18db2620]] | setBaseOutlinePaint |
1 | 3 | [[#18db2620]] | setBaseItemLabelPaint |
2 | 1 | [[#18db25c0]] | baseFillPaint |
2 | 2 | [[#18db25c0]] | baseOutlinePaint |
2 | 3 | [[#18db25c0]] | baseItemLabelPaint |