CloneSet1480


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
16301
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialValueIndicator.java
26706
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
301
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialValueIndicator.java

/**
 * Sets the formatter used to format the value and sends a 
 * {@link DialLayerChangeEvent} to all registered listeners.
 * 
 * @param formatter  the formatter (<code>null</code> not permitted).
 * 
 * @see #getNumberFormat()
 */
public void setNumberFormat(NumberFormat formatter) {
  if (formatter == null) {
    throw new IllegalArgumentException("Null \'formatter\' argument.");
  }
  this.formatter = formatter;
  notifyListeners(new DialLayerChangeEvent(this ));
}


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

/**
 * Sets the number formatter used to convert the tick label values to 
 * strings, and sends a {@link DialLayerChangeEvent} to all registered
 * listeners.
 * 
 * @param formatter  the formatter (<code>null</code> not permitted).
 * 
 * @see #getTickLabelFormatter()
 */
public void setTickLabelFormatter(NumberFormat formatter) {
  if (formatter == null) {
    throw new IllegalArgumentException("Null \'formatter\' argument.");
  }
  this.tickLabelFormatter = formatter;
  notifyListeners(new DialLayerChangeEvent(this ));
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the formatter used to format the value and sends a 
     * {@link DialLayerChangeEvent} to all registered listeners.
     * 
     * @param formatter  the formatter (<code>null</code> not permitted).
     * 
     * @see #getNumberFormat()
     */
/**
     * Sets the number formatter used to convert the tick label values to 
     * strings, and sends a {@link DialLayerChangeEvent} to all registered
     * listeners.
     * 
     * @param formatter  the formatter (<code>null</code> not permitted).
     * 
     * @see #getTickLabelFormatter()
     */
public void [[#variable18f9fa80]](NumberFormat formatter) {
  if (formatter == null) {
    throw new IllegalArgumentException("Null \'formatter\' argument.");
  }
  this. [[#variable18f9f960]]= formatter;
  notifyListeners(new DialLayerChangeEvent(this ));
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18f9fa80]]
setNumberFormat 
12[[#18f9fa80]]
setTickLabelFormatter 
21[[#18f9f960]]
formatter 
22[[#18f9f960]]
tickLabelFormatter