CloneSet1363


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
7220.968method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
171603
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java
271799
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java
Next
Last
Clone Instance
1
Line Count
7
Source Line
1603
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java

/**
 * Sets the base stroke and, if requested, sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param stroke  the stroke (<code>null</code> not permitted).
 * @param notify  notify listeners?
 *
 * @see #getBaseStroke()
 */
public void setBaseStroke(Stroke stroke, boolean notify) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.baseStroke = stroke;
  if (notify) {
    fireChangeEvent();
  }
}


First
Previous
Clone Instance
2
Line Count
7
Source Line
1799
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java

/**
 * Sets the base outline stroke and, if requested, sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param stroke  the stroke (<code>null</code> not permitted).
 * @param notify  a flag that controls whether or not listeners are
 *                notified.
 *
 * @see #getBaseOutlineStroke()
 */
public void setBaseOutlineStroke(Stroke stroke, boolean notify) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.baseOutlineStroke = stroke;
  if (notify) {
    fireChangeEvent();
  }
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the base outline stroke and, if requested, sends a
     * {@link RendererChangeEvent} to all registered listeners.
     *
     * @param stroke  the stroke (<code>null</code> not permitted).
     * @param notify  a flag that controls whether or not listeners are
     *                notified.
     *
     * @see #getBaseOutlineStroke()
     */
/**
     * Sets the base stroke and, if requested, sends a
     * {@link RendererChangeEvent} to all registered listeners.
     *
     * @param stroke  the stroke (<code>null</code> not permitted).
     * @param notify  notify listeners?
     *
     * @see #getBaseStroke()
     */
public void [[#variable18f5f400]](Stroke stroke, boolean notify) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this. [[#variable18f5f380]]= stroke;
  if (notify) {
    fireChangeEvent();
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18f5f400]]
setBaseStroke 
12[[#18f5f400]]
setBaseOutlineStroke 
21[[#18f5f380]]
baseStroke 
22[[#18f5f380]]
baseOutlineStroke