CloneSet1776


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

/**
 * Sets the stroke for ALL series and, if requested, sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param stroke  the stroke (<code>null</code> permitted).
 * @param notify  notify listeners?
 *
 * @deprecated This method should no longer be used (as of version 1.0.6).
 *     It is sufficient to rely on {@link #setSeriesStroke(int, Stroke,
 *     boolean)} and {@link #setBaseStroke(Stroke, boolean)}.
 */
public void setStroke(Stroke stroke, boolean notify) {
  this.stroke = stroke;
  if (notify) {
    fireChangeEvent();
  }
}


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

/**
 * Sets the outline stroke for ALL series and, if requested, sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param stroke  the stroke (<code>null</code> permitted).
 * @param notify  notify listeners?
 *
 * @deprecated This method should no longer be used (as of version 1.0.6).
 *     It is sufficient to rely on {@link #setSeriesOutlineStroke(int,
 *     Stroke, boolean)} and {@link #setBaseOutlineStroke(Stroke, boolean)}.
 */
public void setOutlineStroke(Stroke stroke, boolean notify) {
  this.outlineStroke = stroke;
  if (notify) {
    fireChangeEvent();
  }
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the outline stroke for ALL series and, if requested, sends a
     * {@link RendererChangeEvent} to all registered listeners.
     *
     * @param stroke  the stroke (<code>null</code> permitted).
     * @param notify  notify listeners?
     *
     * @deprecated This method should no longer be used (as of version 1.0.6).
     *     It is sufficient to rely on {@link #setSeriesOutlineStroke(int,
     *     Stroke, boolean)} and {@link #setBaseOutlineStroke(Stroke, boolean)}.
     */
/**
     * Sets the stroke for ALL series and, if requested, sends a
     * {@link RendererChangeEvent} to all registered listeners.
     *
     * @param stroke  the stroke (<code>null</code> permitted).
     * @param notify  notify listeners?
     *
     * @deprecated This method should no longer be used (as of version 1.0.6).
     *     It is sufficient to rely on {@link #setSeriesStroke(int, Stroke,
     *     boolean)} and {@link #setBaseStroke(Stroke, boolean)}.
     */
public void [[#variable1a05e580]](Stroke stroke, boolean notify) {
  this. [[#variable1a05ed20]]= stroke;
  if (notify) {
    fireChangeEvent();
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a05e580]]
setStroke 
12[[#1a05e580]]
setOutlineStroke 
21[[#1a05ed20]]
stroke 
22[[#1a05ed20]]
outlineStroke