CloneSet121


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
61620.958method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
161699
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CategoryPlot.java
262578
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CategoryPlot.java
36382
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/FastScatterPlot.java
46466
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/FastScatterPlot.java
561400
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/PiePlot.java
661756
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/PiePlot.java
76184
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/RingPlot.java
86642
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/SpiderWebPlot.java
96902
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/SpiderWebPlot.java
1061646
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java
1161735
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java
1261824
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java
1361909
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java
1464184
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java
1564341
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java
166221
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/MinMaxCategoryRenderer.java
Next
Last
Clone Instance
1
Line Count
6
Source Line
1699
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CategoryPlot.java

/**
 * Sets the stroke used to draw the grid-lines against the range axis and
 * sends a {@link PlotChangeEvent} to all registered listeners.
 *
 * @param stroke  the stroke (<code>null</code> not permitted).
 *
 * @see #getRangeGridlineStroke()
 */
public void setRangeGridlineStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.rangeGridlineStroke = stroke;
  fireChangeEvent();
}


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

/**
 * Sets the pen-style (<code>Stroke</code>) used to draw the range
 * crosshair (if visible), and sends a {@link PlotChangeEvent} to all
 * registered listeners.
 *
 * @param stroke  the new crosshair stroke (<code>null</code> not
 *         permitted).
 *
 * @see #getRangeCrosshairStroke()
 */
public void setRangeCrosshairStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.rangeCrosshairStroke = stroke;
  fireChangeEvent();
}


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

/**
 * Sets the stroke for the grid lines plotted against the domain axis and
 * sends a {@link PlotChangeEvent} to all registered listeners.
 *
 * @param stroke  the stroke (<code>null</code> not permitted).
 * 
 * @see #getDomainGridlineStroke()
 */
public void setDomainGridlineStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.domainGridlineStroke = stroke;
  fireChangeEvent();
}


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

/**
 * Sets the stroke for the grid lines plotted against the range axis and 
 * sends a {@link PlotChangeEvent} to all registered listeners.
 *
 * @param stroke  the stroke (<code>null</code> permitted).
 * 
 * @see #getRangeGridlineStroke()
 */
public void setRangeGridlineStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.rangeGridlineStroke = stroke;
  fireChangeEvent();
}


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

/**
 * Sets the base section stroke.
 * 
 * @param stroke  the stroke (<code>null</code> not permitted).
 * 
 * @see #getBaseSectionOutlineStroke()
 */
public void setBaseSectionOutlineStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.baseSectionOutlineStroke = stroke;
  fireChangeEvent();
}


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

/**
 * Sets the link stroke and sends a {@link PlotChangeEvent} to all 
 * registered listeners.
 * 
 * @param stroke  the stroke.
 * 
 * @see #getLabelLinkStroke()
 */
public void setLabelLinkStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.labelLinkStroke = stroke;
  fireChangeEvent();
}


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

/**
 * Sets the stroke used to draw the separator between sections and sends 
 * a {@link PlotChangeEvent} to all registered listeners.
 * 
 * @param stroke  the stroke (<code>null</code> not permitted).
 * 
 * @see #getSeparatorStroke()
 */
public void setSeparatorStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.separatorStroke = stroke;
  fireChangeEvent();
}


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

/**
 * Sets the stroke used to draw the axis lines and sends a
 * {@link PlotChangeEvent} to all registered listeners.
 *
 * @param stroke  the stroke (<code>null</code> not permitted).
 *
 * @see #getAxisLineStroke()
 * @since 1.0.4
 */
public void setAxisLineStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.axisLineStroke = stroke;
  fireChangeEvent();
}


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

/**
 * Sets the base series stroke.
 *
 * @param stroke  the stroke (<code>null</code> not permitted).
 */
public void setBaseSeriesOutlineStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.baseSeriesOutlineStroke = stroke;
  fireChangeEvent();
}


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

/**
 * Sets the stroke for the grid lines plotted against the domain axis, and
 * sends a {@link PlotChangeEvent} to all registered listeners.
 * <p>
 * If you set this to <code>null</code>, no grid lines will be drawn.
 *
 * @param stroke  the stroke (<code>null</code> not permitted).
 *
 * @throws IllegalArgumentException if <code>stroke</code> is
 *     <code>null</code>.
 *
 * @see #getDomainGridlineStroke()
 */
public void setDomainGridlineStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.domainGridlineStroke = stroke;
  fireChangeEvent();
}


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

/**
 * Sets the stroke for the grid lines plotted against the range axis,
 * and sends a {@link PlotChangeEvent} to all registered listeners.
 *
 * @param stroke  the stroke (<code>null</code> not permitted).
 *
 * @see #getRangeGridlineStroke()
 */
public void setRangeGridlineStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.rangeGridlineStroke = stroke;
  fireChangeEvent();
}


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

/**
 * Sets the stroke for the zero baseline for the domain axis,
 * and sends a {@link PlotChangeEvent} to all registered listeners.
 *
 * @param stroke  the stroke (<code>null</code> not permitted).
 *
 * @since 1.0.5
 *
 * @see #getRangeZeroBaselineStroke()
 */
public void setDomainZeroBaselineStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.domainZeroBaselineStroke = stroke;
  fireChangeEvent();
}


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

/**
 * Sets the stroke for the zero baseline for the range axis,
 * and sends a {@link PlotChangeEvent} to all registered listeners.
 *
 * @param stroke  the stroke (<code>null</code> not permitted).
 *
 * @see #getRangeZeroBaselineStroke()
 */
public void setRangeZeroBaselineStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.rangeZeroBaselineStroke = stroke;
  fireChangeEvent();
}


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

/**
 * Sets the Stroke used to draw the crosshairs (if visible) and notifies
 * registered listeners that the axis has been modified.
 *
 * @param stroke  the new crosshair stroke (<code>null</code> not
 *     permitted).
 *
 * @see #getDomainCrosshairStroke()
 */
public void setDomainCrosshairStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.domainCrosshairStroke = stroke;
  fireChangeEvent();
}


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

/**
 * Sets the stroke used to draw the crosshairs (if visible) and sends a
 * {@link PlotChangeEvent} to all registered listeners.
 *
 * @param stroke  the new crosshair stroke (<code>null</code> not
 *         permitted).
 *
 * @see #getRangeCrosshairStroke()
 */
public void setRangeCrosshairStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.rangeCrosshairStroke = stroke;
  fireChangeEvent();
}


First
Previous
Clone Instance
16
Line Count
6
Source Line
221
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/MinMaxCategoryRenderer.java

/**
 * Sets the stroke of the line between the minimum value and the maximum
 * value and sends a {@link RendererChangeEvent} to all registered
 * listeners.
 *
 * @param stroke the new stroke (<code>null</code> not permitted).
 */
public void setGroupStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.groupStroke = stroke;
  fireChangeEvent();
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the stroke used to draw the crosshairs (if visible) and sends a
     * {@link PlotChangeEvent} to all registered listeners.
     *
     * @param stroke  the new crosshair stroke (<code>null</code> not
     *         permitted).
     *
     * @see #getRangeCrosshairStroke()
     */
/**
     * Sets the stroke for the grid lines plotted against the range axis and 
     * sends a {@link PlotChangeEvent} to all registered listeners.
     *
     * @param stroke  the stroke (<code>null</code> permitted).
     * 
     * @see #getRangeGridlineStroke()
     */
/**
     * Sets the stroke for the grid lines plotted against the domain axis, and
     * sends a {@link PlotChangeEvent} to all registered listeners.
     * <p>
     * If you set this to <code>null</code>, no grid lines will be drawn.
     *
     * @param stroke  the stroke (<code>null</code> not permitted).
     *
     * @throws IllegalArgumentException if <code>stroke</code> is
     *     <code>null</code>.
     *
     * @see #getDomainGridlineStroke()
     */
/**
     * Sets the stroke used to draw the axis lines and sends a
     * {@link PlotChangeEvent} to all registered listeners.
     *
     * @param stroke  the stroke (<code>null</code> not permitted).
     *
     * @see #getAxisLineStroke()
     * @since 1.0.4
     */
/**
     * Sets the base series stroke.
     *
     * @param stroke  the stroke (<code>null</code> not permitted).
     */
/**
     * Sets the stroke for the zero baseline for the domain axis,
     * and sends a {@link PlotChangeEvent} to all registered listeners.
     *
     * @param stroke  the stroke (<code>null</code> not permitted).
     *
     * @since 1.0.5
     *
     * @see #getRangeZeroBaselineStroke()
     */
/**
     * Sets the stroke for the zero baseline for the range axis,
     * and sends a {@link PlotChangeEvent} to all registered listeners.
     *
     * @param stroke  the stroke (<code>null</code> not permitted).
     *
     * @see #getRangeZeroBaselineStroke()
     */
/**
     * Sets the base section stroke.
     * 
     * @param stroke  the stroke (<code>null</code> not permitted).
     * 
     * @see #getBaseSectionOutlineStroke()
     */
/**
     * Sets the link stroke and sends a {@link PlotChangeEvent} to all 
     * registered listeners.
     * 
     * @param stroke  the stroke.
     * 
     * @see #getLabelLinkStroke()
     */
/**
     * Sets the stroke of the line between the minimum value and the maximum
     * value and sends a {@link RendererChangeEvent} to all registered
     * listeners.
     *
     * @param stroke the new stroke (<code>null</code> not permitted).
     */
/**
     * Sets the Stroke used to draw the crosshairs (if visible) and notifies
     * registered listeners that the axis has been modified.
     *
     * @param stroke  the new crosshair stroke (<code>null</code> not
     *     permitted).
     *
     * @see #getDomainCrosshairStroke()
     */
/**
     * Sets the stroke used to draw the separator between sections and sends 
     * a {@link PlotChangeEvent} to all registered listeners.
     * 
     * @param stroke  the stroke (<code>null</code> not permitted).
     * 
     * @see #getSeparatorStroke()
     */
/**
     * Sets the stroke for the grid lines plotted against the range axis,
     * and sends a {@link PlotChangeEvent} to all registered listeners.
     *
     * @param stroke  the stroke (<code>null</code> not permitted).
     *
     * @see #getRangeGridlineStroke()
     */
/**
     * Sets the stroke for the grid lines plotted against the domain axis and
     * sends a {@link PlotChangeEvent} to all registered listeners.
     *
     * @param stroke  the stroke (<code>null</code> not permitted).
     * 
     * @see #getDomainGridlineStroke()
     */
/**
     * Sets the stroke used to draw the grid-lines against the range axis and
     * sends a {@link PlotChangeEvent} to all registered listeners.
     *
     * @param stroke  the stroke (<code>null</code> not permitted).
     *
     * @see #getRangeGridlineStroke()
     */
/**
     * Sets the pen-style (<code>Stroke</code>) used to draw the range
     * crosshair (if visible), and sends a {@link PlotChangeEvent} to all
     * registered listeners.
     *
     * @param stroke  the new crosshair stroke (<code>null</code> not
     *         permitted).
     *
     * @see #getRangeCrosshairStroke()
     */
public void [[#variable1aa72a40]](Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this. [[#variable1aa72920]]= stroke;
  fireChangeEvent();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1aa72a40]]
setRangeGridlineStroke 
12[[#1aa72a40]]
setRangeCrosshairStroke 
13[[#1aa72a40]]
setDomainGridlineStroke 
14[[#1aa72a40]]
setRangeGridlineStroke 
15[[#1aa72a40]]
setBaseSectionOutlineStroke 
16[[#1aa72a40]]
setLabelLinkStroke 
17[[#1aa72a40]]
setSeparatorStroke 
18[[#1aa72a40]]
setAxisLineStroke 
19[[#1aa72a40]]
setBaseSeriesOutlineStroke 
110[[#1aa72a40]]
setDomainGridlineStroke 
111[[#1aa72a40]]
setRangeGridlineStroke 
112[[#1aa72a40]]
setDomainZeroBaselineStroke 
113[[#1aa72a40]]
setRangeZeroBaselineStroke 
114[[#1aa72a40]]
setDomainCrosshairStroke 
115[[#1aa72a40]]
setRangeCrosshairStroke 
116[[#1aa72a40]]
setGroupStroke 
21[[#1aa72920]]
rangeGridlineStroke 
22[[#1aa72920]]
rangeCrosshairStroke 
23[[#1aa72920]]
domainGridlineStroke 
24[[#1aa72920]]
rangeGridlineStroke 
25[[#1aa72920]]
baseSectionOutlineStroke 
26[[#1aa72920]]
labelLinkStroke 
27[[#1aa72920]]
separatorStroke 
28[[#1aa72920]]
axisLineStroke 
29[[#1aa72920]]
baseSeriesOutlineStroke 
210[[#1aa72920]]
domainGridlineStroke 
211[[#1aa72920]]
rangeGridlineStroke 
212[[#1aa72920]]
domainZeroBaselineStroke 
213[[#1aa72920]]
rangeZeroBaselineStroke 
214[[#1aa72920]]
domainCrosshairStroke 
215[[#1aa72920]]
rangeCrosshairStroke 
216[[#1aa72920]]
groupStroke