Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
6 | 3 | 2 | 0.958 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 6 | 248 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/MinMaxCategoryRenderer.java |
2 | 6 | 277 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/MinMaxCategoryRenderer.java |
3 | 6 | 306 | 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(); } |
| |||||
/** * 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(); } |
| |||||
/** * 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(); } |
| |||
/** * 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 Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18ebc9c0]] | setObjectIcon |
1 | 2 | [[#18ebc9c0]] | setMaxIcon |
1 | 3 | [[#18ebc9c0]] | setMinIcon |
2 | 1 | [[#18ebc8a0]] | objectIcon |
2 | 2 | [[#18ebc8a0]] | maxIcon |
2 | 3 | [[#18ebc8a0]] | minIcon |