CloneSet1882


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
15269
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/annotations/CategoryLineAnnotation.java
25260
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
269
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/annotations/CategoryLineAnnotation.java

/**
 * Sets the stroke used to draw the connecting line.
 *
 * @param stroke  the stroke (<code>null</code> not permitted).
 *
 * @see #getStroke()
 */
public void setStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.stroke = stroke;
}


First
Previous
Clone Instance
2
Line Count
5
Source Line
260
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 stroke  the stroke (<code>null</code> not permitted).
 */
public void setAdvanceLineStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.advanceLineStroke = stroke;
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the stroke used to draw the connecting line.
     *
     * @param stroke  the stroke (<code>null</code> not permitted).
     *
     * @see #getStroke()
     */
/**
     * The advance line is the line drawn at the limit of the current cycle, 
     * when erasing the previous cycle. 
     * 
     * @param stroke  the stroke (<code>null</code> not permitted).
     */
public void [[#variable1a099700]](Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this. [[#variable1a099680]]= stroke;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a099700]]
setStroke 
12[[#1a099700]]
setAdvanceLineStroke 
21[[#1a099680]]
stroke 
22[[#1a099680]]
advanceLineStroke