CloneSet1693


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6220.958method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
161937
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/PiePlot.java
26566
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/ThermometerPlot.java
Next
Last
Clone Instance
1
Line Count
6
Source Line
1937
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/PiePlot.java

/**
 * Sets the padding between each label and its outline and sends a 
 * {@link PlotChangeEvent} to all registered listeners.
 * 
 * @param padding  the padding (<code>null</code> not permitted).
 * 
 * @since 1.0.7
 * 
 * @see #getLabelPadding()
 */
public void setLabelPadding(RectangleInsets padding) {
  if (padding == null) {
    throw new IllegalArgumentException("Null \'padding\' argument.");
  }
  this.labelPadding = padding;
  fireChangeEvent();
}


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

/**
 * Sets the padding for the thermometer and sends a {@link PlotChangeEvent} 
 * to all registered listeners.
 *
 * @param padding  the padding (<code>null</code> not permitted).
 * 
 * @see #getPadding()
 */
public void setPadding(RectangleInsets padding) {
  if (padding == null) {
    throw new IllegalArgumentException("Null \'padding\' argument.");
  }
  this.padding = padding;
  fireChangeEvent();
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the padding for the thermometer and sends a {@link PlotChangeEvent} 
     * to all registered listeners.
     *
     * @param padding  the padding (<code>null</code> not permitted).
     * 
     * @see #getPadding()
     */
/**
     * Sets the padding between each label and its outline and sends a 
     * {@link PlotChangeEvent} to all registered listeners.
     * 
     * @param padding  the padding (<code>null</code> not permitted).
     * 
     * @since 1.0.7
     * 
     * @see #getLabelPadding()
     */
public void [[#variable1a01cb80]](RectangleInsets padding) {
  if (padding == null) {
    throw new IllegalArgumentException("Null \'padding\' argument.");
  }
  this. [[#variable1a01cbe0]]= padding;
  fireChangeEvent();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a01cb80]]
setLabelPadding 
12[[#1a01cb80]]
setPadding 
21[[#1a01cbe0]]
labelPadding 
22[[#1a01cbe0]]
padding