CloneSet987


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6320.964method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16160
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialTextAnnotation.java
26326
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialValueIndicator.java
36626
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
160
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialTextAnnotation.java

/**
 * Sets the font used to display the label and sends a 
 * {@link DialLayerChangeEvent} to all registered listeners.
 * 
 * @param font  the font (<code>null</code> not permitted).
 * 
 * @see #getFont()
 */
public void setFont(Font font) {
  if (font == null) {
    throw new IllegalArgumentException("Null \'font\' argument.");
  }
  this.font = font;
  notifyListeners(new DialLayerChangeEvent(this ));
}


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

/**
 * Sets the font and sends a {@link DialLayerChangeEvent} to all registered
 * listeners.
 * 
 * @param font  the font (<code>null</code> not permitted).
 */
public void setFont(Font font) {
  if (font == null) {
    throw new IllegalArgumentException("Null \'font\' argument.");
  }
  this.font = font;
  notifyListeners(new DialLayerChangeEvent(this ));
}


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

/**
 * Sets the font used to display the tick labels and sends a 
 * {@link DialLayerChangeEvent} to all registered listeners.
 *
 * @param font  the font (<code>null</code> not permitted).
 *
 * @see #getTickLabelFont()
 */
public void setTickLabelFont(Font font) {
  if (font == null) {
    throw new IllegalArgumentException("Null \'font\' argument.");
  }
  this.tickLabelFont = font;
  notifyListeners(new DialLayerChangeEvent(this ));
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the font used to display the label and sends a 
     * {@link DialLayerChangeEvent} to all registered listeners.
     * 
     * @param font  the font (<code>null</code> not permitted).
     * 
     * @see #getFont()
     */
/**
     * Sets the font used to display the tick labels and sends a 
     * {@link DialLayerChangeEvent} to all registered listeners.
     *
     * @param font  the font (<code>null</code> not permitted).
     *
     * @see #getTickLabelFont()
     */
/**
     * Sets the font and sends a {@link DialLayerChangeEvent} to all registered
     * listeners.
     * 
     * @param font  the font (<code>null</code> not permitted).
     */
public void [[#variable18e2b0c0]](Font font) {
  if (font == null) {
    throw new IllegalArgumentException("Null \'font\' argument.");
  }
  this. [[#variable18e2b000]]= font;
  notifyListeners(new DialLayerChangeEvent(this ));
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18e2b0c0]]
setFont 
12[[#18e2b0c0]]
setFont 
13[[#18e2b0c0]]
setTickLabelFont 
21[[#18e2b000]]
font 
22[[#18e2b000]]
font 
23[[#18e2b000]]
tickLabelFont