Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
7 | 2 | 2 | 0.954 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 7 | 523 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/MeterPlot.java |
2 | 7 | 799 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/ThermometerPlot.java |
| |||||
/** * Sets the tick label paint and sends a {@link PlotChangeEvent} to all * registered listeners. * * @param paint the paint (<code>null</code> not permitted). * * @see #getTickLabelPaint() */ public void setTickLabelPaint(Paint paint) { if (paint == null) { throw new IllegalArgumentException("Null \'paint\' argument."); } if ( !this.tickLabelPaint.equals(paint)) { this.tickLabelPaint = paint; fireChangeEvent(); } } |
| |||||
/** * Sets the paint used to display the current value and sends a * {@link PlotChangeEvent} to all registered listeners. * * @param paint the new paint (<code>null</code> not permitted). * * @see #getValuePaint() */ public void setValuePaint(Paint paint) { if (paint == null) { throw new IllegalArgumentException("Null \'paint\' argument."); } if ( !this.valuePaint.equals(paint)) { this.valuePaint = paint; fireChangeEvent(); } } |
| |||
/** * Sets the tick label paint and sends a {@link PlotChangeEvent} to all * registered listeners. * * @param paint the paint (<code>null</code> not permitted). * * @see #getTickLabelPaint() */ /** * Sets the paint used to display the current value and sends a * {@link PlotChangeEvent} to all registered listeners. * * @param paint the new paint (<code>null</code> not permitted). * * @see #getValuePaint() */ public void [[#variable18f15720]](Paint paint) { if (paint == null) { throw new IllegalArgumentException("Null \'paint\' argument."); } if ( !this. [[#variable18f156c0]].equals(paint)) { this. [[#variable18f156c0]]= paint; fireChangeEvent(); } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18f15720]] | setTickLabelPaint |
1 | 2 | [[#18f15720]] | setValuePaint |
2 | 1 | [[#18f156c0]] | tickLabelPaint |
2 | 2 | [[#18f156c0]] | valuePaint |