CloneSet1504


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6220.964method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16238
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/ArcDialFrame.java
26265
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/ArcDialFrame.java
Next
Last
Clone Instance
1
Line Count
6
Source Line
238
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/ArcDialFrame.java

/**
 * Sets the inner radius and sends a {@link DialLayerChangeEvent} to 
 * all registered listeners.
 *
 * @param radius  the inner radius.
 * 
 * @see #getInnerRadius()
 */
public void setInnerRadius(double radius) {
  if (radius < 0.0) {
    throw new IllegalArgumentException("Negative \'radius\' argument.");
  }
  this.innerRadius = radius;
  notifyListeners(new DialLayerChangeEvent(this ));
}


First
Previous
Clone Instance
2
Line Count
6
Source Line
265
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/ArcDialFrame.java

/**
 * Sets the outer radius and sends a {@link DialLayerChangeEvent} to 
 * all registered listeners.
 *
 * @param radius  the outer radius.
 * 
 * @see #getOuterRadius()
 */
public void setOuterRadius(double radius) {
  if (radius < 0.0) {
    throw new IllegalArgumentException("Negative \'radius\' argument.");
  }
  this.outerRadius = radius;
  notifyListeners(new DialLayerChangeEvent(this ));
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the outer radius and sends a {@link DialLayerChangeEvent} to 
     * all registered listeners.
     *
     * @param radius  the outer radius.
     * 
     * @see #getOuterRadius()
     */
/**
     * Sets the inner radius and sends a {@link DialLayerChangeEvent} to 
     * all registered listeners.
     *
     * @param radius  the inner radius.
     * 
     * @see #getInnerRadius()
     */
public void [[#variable18faf220]](double radius) {
  if (radius < 0.0) {
    throw new IllegalArgumentException("Negative \'radius\' argument.");
  }
  this. [[#variable18faf1c0]]= radius;
  notifyListeners(new DialLayerChangeEvent(this ));
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18faf220]]
setInnerRadius 
12[[#18faf220]]
setOuterRadius 
21[[#18faf1c0]]
innerRadius 
22[[#18faf1c0]]
outerRadius