CloneSet1156


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6320.958method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16248
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/MinMaxCategoryRenderer.java
26277
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/MinMaxCategoryRenderer.java
36306
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
248
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/MinMaxCategoryRenderer.java

/**
 * Sets the icon drawn for each data item and sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param icon  the icon.
 *
 * @see #getObjectIcon()
 */
public void setObjectIcon(Icon icon) {
  if (icon == null) {
    throw new IllegalArgumentException("Null \'icon\' argument.");
  }
  this.objectIcon = icon;
  fireChangeEvent();
}


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

/**
 * Sets the icon displayed for the maximum value data item within each
 * category and sends a {@link RendererChangeEvent} to all registered
 * listeners.
 *
 * @param icon  the icon (<code>null</code> not permitted).
 *
 * @see #getMaxIcon()
 */
public void setMaxIcon(Icon icon) {
  if (icon == null) {
    throw new IllegalArgumentException("Null \'icon\' argument.");
  }
  this.maxIcon = icon;
  fireChangeEvent();
}


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

/**
 * Sets the icon displayed for the minimum value data item within each
 * category and sends a {@link RendererChangeEvent} to all registered
 * listeners.
 *
 * @param icon  the icon (<code>null</code> not permitted).
 *
 * @see #getMinIcon()
 */
public void setMinIcon(Icon icon) {
  if (icon == null) {
    throw new IllegalArgumentException("Null \'icon\' argument.");
  }
  this.minIcon = icon;
  fireChangeEvent();
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the icon displayed for the minimum value data item within each
     * category and sends a {@link RendererChangeEvent} to all registered
     * listeners.
     *
     * @param icon  the icon (<code>null</code> not permitted).
     *
     * @see #getMinIcon()
     */
/**
     * Sets the icon displayed for the maximum value data item within each
     * category and sends a {@link RendererChangeEvent} to all registered
     * listeners.
     *
     * @param icon  the icon (<code>null</code> not permitted).
     *
     * @see #getMaxIcon()
     */
/**
     * Sets the icon drawn for each data item and sends a
     * {@link RendererChangeEvent} to all registered listeners.
     *
     * @param icon  the icon.
     *
     * @see #getObjectIcon()
     */
public void [[#variable18ebc9c0]](Icon icon) {
  if (icon == null) {
    throw new IllegalArgumentException("Null \'icon\' argument.");
  }
  this. [[#variable18ebc8a0]]= icon;
  fireChangeEvent();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18ebc9c0]]
setObjectIcon 
12[[#18ebc9c0]]
setMaxIcon 
13[[#18ebc9c0]]
setMinIcon 
21[[#18ebc8a0]]
objectIcon 
22[[#18ebc8a0]]
maxIcon 
23[[#18ebc8a0]]
minIcon