CloneSet647


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6520.958method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16579
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/MeterPlot.java
261783
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/PiePlot.java
36374
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/Plot.java
46467
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/PolarPlot.java
56956
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/SpiderWebPlot.java
Next
Last
Clone Instance
1
Line Count
6
Source Line
579
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/MeterPlot.java

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


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

/**
 * Sets the section label font and sends a {@link PlotChangeEvent} to all 
 * registered listeners.
 *
 * @param font  the font (<code>null</code> not permitted).
 * 
 * @see #getLabelFont()
 */
public void setLabelFont(Font font) {
  if (font == null) {
    throw new IllegalArgumentException("Null \'font\' argument.");
  }
  this.labelFont = font;
  fireChangeEvent();
}


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

/**
 * Sets the font used to display the 'no data' message and sends a
 * {@link PlotChangeEvent} to all registered listeners.
 *
 * @param font  the font (<code>null</code> not permitted).
 *
 * @see #getNoDataMessageFont()
 */
public void setNoDataMessageFont(Font font) {
  if (font == null) {
    throw new IllegalArgumentException("Null \'font\' argument.");
  }
  this.noDataMessageFont = font;
  fireChangeEvent();
}


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

/**
 * Sets the font used to display the angle labels and sends a
 * {@link PlotChangeEvent} to all registered listeners.
 *
 * @param font  the font (<code>null</code> not permitted).
 *
 * @see #getAngleLabelFont()
 */
public void setAngleLabelFont(Font font) {
  if (font == null) {
    throw new IllegalArgumentException("Null \'font\' argument.");
  }
  this.angleLabelFont = font;
  fireChangeEvent();
}


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

/**
 * Sets the series label font and sends a {@link PlotChangeEvent} to all
 * registered listeners.
 *
 * @param font  the font (<code>null</code> not permitted).
 *
 * @see #getLabelFont()
 */
public void setLabelFont(Font font) {
  if (font == null) {
    throw new IllegalArgumentException("Null \'font\' argument.");
  }
  this.labelFont = font;
  fireChangeEvent();
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the font used to display the value label and sends a 
     * {@link PlotChangeEvent} to all registered listeners.
     *
     * @param font  the font (<code>null</code> not permitted).
     * 
     * @see #getValueFont()
     */
/**
     * Sets the font used to display the 'no data' message and sends a
     * {@link PlotChangeEvent} to all registered listeners.
     *
     * @param font  the font (<code>null</code> not permitted).
     *
     * @see #getNoDataMessageFont()
     */
/**
     * Sets the font used to display the angle labels and sends a
     * {@link PlotChangeEvent} to all registered listeners.
     *
     * @param font  the font (<code>null</code> not permitted).
     *
     * @see #getAngleLabelFont()
     */
/**
     * Sets the section label font and sends a {@link PlotChangeEvent} to all 
     * registered listeners.
     *
     * @param font  the font (<code>null</code> not permitted).
     * 
     * @see #getLabelFont()
     */
/**
     * Sets the series label font and sends a {@link PlotChangeEvent} to all
     * registered listeners.
     *
     * @param font  the font (<code>null</code> not permitted).
     *
     * @see #getLabelFont()
     */
public void [[#variable18cb4ec0]](Font font) {
  if (font == null) {
    throw new IllegalArgumentException("Null \'font\' argument.");
  }
  this. [[#variable18cb5200]]= font;
  fireChangeEvent();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18cb4ec0]]
setValueFont 
12[[#18cb4ec0]]
setLabelFont 
13[[#18cb4ec0]]
setNoDataMessageFont 
14[[#18cb4ec0]]
setAngleLabelFont 
15[[#18cb4ec0]]
setLabelFont 
21[[#18cb5200]]
valueFont 
22[[#18cb5200]]
labelFont 
23[[#18cb5200]]
noDataMessageFont 
24[[#18cb5200]]
angleLabelFont 
25[[#18cb5200]]
labelFont