CloneSet327


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6720.964method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16211
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/ArcDialFrame.java
26211
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialCap.java
36286
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialPointer.java
46407
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialValueIndicator.java
56207
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/StandardDialFrame.java
66460
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/StandardDialScale.java
76575
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
211
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/ArcDialFrame.java

/**
 * Sets the stroke and sends a {@link DialLayerChangeEvent} to 
 * all registered listeners.
 * 
 * @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;
  notifyListeners(new DialLayerChangeEvent(this ));
}


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

/**
 * Sets the stroke used to draw the outline of the cap and sends a 
 * {@link DialLayerChangeEvent} to all registered listeners.
 *
 * @param stroke  the stroke (<code>null</code> not permitted).
 *
 * @see #getOutlineStroke()
 */
public void setOutlineStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.outlineStroke = stroke;
  notifyListeners(new DialLayerChangeEvent(this ));
}


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

/**
 * Sets the stroke and sends a {@link DialLayerChangeEvent} to all 
 * registered listeners.
 * 
 * @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;
  notifyListeners(new DialLayerChangeEvent(this ));
}


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

/**
 * Sets the outline stroke and sends a {@link DialLayerChangeEvent} to
 * all registered listeners.
 * 
 * @param stroke  the stroke (<code>null</code> not permitted).
 * 
 * @see #getOutlineStroke()
 */
public void setOutlineStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.outlineStroke = stroke;
  notifyListeners(new DialLayerChangeEvent(this ));
}


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

/**
 * Sets the stroke and sends a {@link DialLayerChangeEvent} to all 
 * registered listeners.
 * 
 * @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;
  notifyListeners(new DialLayerChangeEvent(this ));
}


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

/**
 * Sets the stroke used to draw the major tick marks and sends a 
 * {@link DialLayerChangeEvent} to all registered listeners.
 *
 * @param stroke  the stroke (<code>null</code> not permitted).
 *
 * @see #getMajorTickStroke()
 */
public void setMajorTickStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.majorTickStroke = stroke;
  notifyListeners(new DialLayerChangeEvent(this ));
}


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

/**
 * Sets the stroke used to draw the minor tick marks and sends a 
 * {@link DialLayerChangeEvent} to all registered listeners.
 * 
 * @param stroke  the stroke (<code>null</code> not permitted).
 * 
 * @see #getMinorTickStroke()
 * 
 * @since 1.0.8
 */
public void setMinorTickStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.minorTickStroke = stroke;
  notifyListeners(new DialLayerChangeEvent(this ));
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the stroke used to draw the major tick marks and sends a 
     * {@link DialLayerChangeEvent} to all registered listeners.
     *
     * @param stroke  the stroke (<code>null</code> not permitted).
     *
     * @see #getMajorTickStroke()
     */
/**
     * Sets the stroke used to draw the minor tick marks and sends a 
     * {@link DialLayerChangeEvent} to all registered listeners.
     * 
     * @param stroke  the stroke (<code>null</code> not permitted).
     * 
     * @see #getMinorTickStroke()
     * 
     * @since 1.0.8
     */
/**
     * Sets the stroke and sends a {@link DialLayerChangeEvent} to all 
     * registered listeners.
     * 
     * @param stroke  the stroke (<code>null</code> not permitted).
     * 
     * @see #getStroke()
     */
/**
     * Sets the outline stroke and sends a {@link DialLayerChangeEvent} to
     * all registered listeners.
     * 
     * @param stroke  the stroke (<code>null</code> not permitted).
     * 
     * @see #getOutlineStroke()
     */
/**
         * Sets the stroke and sends a {@link DialLayerChangeEvent} to all 
         * registered listeners.
         * 
         * @param stroke  the stroke (<code>null</code> not permitted).
         * 
         * @see #getStroke()
         */
/**
     * Sets the stroke used to draw the outline of the cap and sends a 
     * {@link DialLayerChangeEvent} to all registered listeners.
     *
     * @param stroke  the stroke (<code>null</code> not permitted).
     *
     * @see #getOutlineStroke()
     */
/**
     * Sets the stroke and sends a {@link DialLayerChangeEvent} to 
     * all registered listeners.
     * 
     * @param stroke  the stroke (<code>null</code> not permitted).
     * 
     * @see #getStroke()
     */
public void [[#variable1a9173a0]](Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this. [[#variable1a917320]]= stroke;
  notifyListeners(new DialLayerChangeEvent(this ));
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a9173a0]]
setStroke 
12[[#1a9173a0]]
setOutlineStroke 
13[[#1a9173a0]]
setStroke 
14[[#1a9173a0]]
setOutlineStroke 
15[[#1a9173a0]]
setStroke 
16[[#1a9173a0]]
setMajorTickStroke 
17[[#1a9173a0]]
setMinorTickStroke 
21[[#1a917320]]
stroke 
22[[#1a917320]]
outlineStroke 
23[[#1a917320]]
stroke 
24[[#1a917320]]
outlineStroke 
25[[#1a917320]]
stroke 
26[[#1a917320]]
majorTickStroke 
27[[#1a917320]]
minorTickStroke