Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
5 | 2 | 2 | 0.955 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 5 | 244 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/annotations/CategoryLineAnnotation.java |
2 | 5 | 238 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/CyclicNumberAxis.java |
| |||||
/** * Sets the paint used to draw the connecting line. * * @param paint the paint (<code>null</code> not permitted). * * @see #getPaint() */ public void setPaint(Paint paint) { if (paint == null) { throw new IllegalArgumentException("Null \'paint\' argument."); } this.paint = paint; } |
| |||||
/** * The advance line is the line drawn at the limit of the current cycle, * when erasing the previous cycle. * * @param paint the paint (<code>null</code> not permitted). */ public void setAdvanceLinePaint(Paint paint) { if (paint == null) { throw new IllegalArgumentException("Null \'paint\' argument."); } this.advanceLinePaint = paint; } |
| |||
/** * Sets the paint used to draw the connecting line. * * @param paint the paint (<code>null</code> not permitted). * * @see #getPaint() */ /** * The advance line is the line drawn at the limit of the current cycle, * when erasing the previous cycle. * * @param paint the paint (<code>null</code> not permitted). */ public void [[#variable1a09a120]](Paint paint) { if (paint == null) { throw new IllegalArgumentException("Null \'paint\' argument."); } this. [[#variable1a09a020]]= paint; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1a09a120]] | setPaint |
1 | 2 | [[#1a09a120]] | setAdvanceLinePaint |
2 | 1 | [[#1a09a020]] | paint |
2 | 2 | [[#1a09a020]] | advanceLinePaint |