CloneSet1883


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5220.955method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
15244
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/annotations/CategoryLineAnnotation.java
25238
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/CyclicNumberAxis.java
Next
Last
Clone Instance
1
Line Count
5
Source Line
244
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/annotations/CategoryLineAnnotation.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;
}


First
Previous
Clone Instance
2
Line Count
5
Source Line
238
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/CyclicNumberAxis.java

/**
 * 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;
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * 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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a09a120]]
setPaint 
12[[#1a09a120]]
setAdvanceLinePaint 
21[[#1a09a020]]
paint 
22[[#1a09a020]]
advanceLinePaint