Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
6 | 4 | 2 | 0.958 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 6 | 181 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/WaterfallBarRenderer.java |
2 | 6 | 204 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/WaterfallBarRenderer.java |
3 | 6 | 226 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/WaterfallBarRenderer.java |
4 | 6 | 249 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/WaterfallBarRenderer.java |
| |||||
/** * Sets the paint that will be used to draw the first bar and sends a * {@link RendererChangeEvent} to all registered listeners. * * @param paint the paint (<code>null</code> not permitted). */ public void setFirstBarPaint(Paint paint) { if (paint == null) { throw new IllegalArgumentException("Null \'paint\' argument"); } this.firstBarPaint = paint; fireChangeEvent(); } |
| |||||
/** * Sets the paint that will be used to draw the last bar and sends a * {@link RendererChangeEvent} to all registered listeners. * * @param paint the paint (<code>null</code> not permitted). */ public void setLastBarPaint(Paint paint) { if (paint == null) { throw new IllegalArgumentException("Null \'paint\' argument"); } this.lastBarPaint = paint; fireChangeEvent(); } |
| |||||
/** * Sets the paint that will be used to draw bars having positive values. * * @param paint the paint (<code>null</code> not permitted). */ public void setPositiveBarPaint(Paint paint) { if (paint == null) { throw new IllegalArgumentException("Null \'paint\' argument"); } this.positiveBarPaint = paint; fireChangeEvent(); } |
| |||||
/** * Sets the paint that will be used to draw bars having negative values, * and sends a {@link RendererChangeEvent} to all registered listeners. * * @param paint the paint (<code>null</code> not permitted). */ public void setNegativeBarPaint(Paint paint) { if (paint == null) { throw new IllegalArgumentException("Null \'paint\' argument"); } this.negativeBarPaint = paint; fireChangeEvent(); } |
| |||
/** * Sets the paint that will be used to draw bars having negative values, * and sends a {@link RendererChangeEvent} to all registered listeners. * * @param paint the paint (<code>null</code> not permitted). */ /** * Sets the paint that will be used to draw bars having positive values. * * @param paint the paint (<code>null</code> not permitted). */ /** * Sets the paint that will be used to draw the last bar and sends a * {@link RendererChangeEvent} to all registered listeners. * * @param paint the paint (<code>null</code> not permitted). */ /** * Sets the paint that will be used to draw the first bar and sends a * {@link RendererChangeEvent} to all registered listeners. * * @param paint the paint (<code>null</code> not permitted). */ public void [[#variable18d875e0]](Paint paint) { if (paint == null) { throw new IllegalArgumentException("Null \'paint\' argument"); } this. [[#variable18d87580]]= paint; fireChangeEvent(); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18d875e0]] | setFirstBarPaint |
1 | 2 | [[#18d875e0]] | setLastBarPaint |
1 | 3 | [[#18d875e0]] | setPositiveBarPaint |
1 | 4 | [[#18d875e0]] | setNegativeBarPaint |
2 | 1 | [[#18d87580]] | firstBarPaint |
2 | 2 | [[#18d87580]] | lastBarPaint |
2 | 3 | [[#18d87580]] | positiveBarPaint |
2 | 4 | [[#18d87580]] | negativeBarPaint |