CloneSet1505


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
16406
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/StandardDialScale.java
26517
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/StandardDialScale.java
Next
Last
Clone Instance
1
Line Count
6
Source Line
406
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/StandardDialScale.java

/**
 * Sets the length factor for the major tick marks and sends a
 * {@link DialLayerChangeEvent} to all registered listeners.
 *
 * @param length  the length.
 *
 * @see #getMajorTickLength()
 */
public void setMajorTickLength(double length) {
  if (length < 0.0) {
    throw new IllegalArgumentException("Negative \'length\' argument.");
  }
  this.majorTickLength = length;
  notifyListeners(new DialLayerChangeEvent(this ));
}


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

/**
 * Sets the length factor for the minor tick marks and sends 
 * a {@link DialLayerChangeEvent} to all registered listeners.
 *
 * @param length  the length.
 *
 * @see #getMinorTickLength()
 */
public void setMinorTickLength(double length) {
  if (length < 0.0) {
    throw new IllegalArgumentException("Negative \'length\' argument.");
  }
  this.minorTickLength = length;
  notifyListeners(new DialLayerChangeEvent(this ));
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the length factor for the minor tick marks and sends 
     * a {@link DialLayerChangeEvent} to all registered listeners.
     *
     * @param length  the length.
     *
     * @see #getMinorTickLength()
     */
/**
     * Sets the length factor for the major tick marks and sends a
     * {@link DialLayerChangeEvent} to all registered listeners.
     *
     * @param length  the length.
     *
     * @see #getMajorTickLength()
     */
public void [[#variable18fafd40]](double length) {
  if (length < 0.0) {
    throw new IllegalArgumentException("Negative \'length\' argument.");
  }
  this. [[#variable18fafc20]]= length;
  notifyListeners(new DialLayerChangeEvent(this ));
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18fafd40]]
setMajorTickLength 
12[[#18fafd40]]
setMinorTickLength 
21[[#18fafc20]]
majorTickLength 
22[[#18fafc20]]
minorTickLength