Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
4 | 2 | 2 | 0.957 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 4 | 2284 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java |
2 | 4 | 2372 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java |
| |||||
/** * Sets the item label font for ALL series and, if requested, sends a * {@link RendererChangeEvent} to all registered listeners. * * @param font the font (<code>null</code> permitted). * @param notify a flag that controls whether or not listeners are * notified. * * @deprecated This method should no longer be used (as of version 1.0.6). * It is sufficient to rely on {@link #setSeriesItemLabelFont(int, * Font, boolean)} and {@link #setBaseItemLabelFont(Font, boolean)}. */ public void setItemLabelFont(Font font, boolean notify) { this.itemLabelFont = font; if (notify) { fireChangeEvent(); } } |
| |||||
/** * Sets the base item label font and, if requested, sends a * {@link RendererChangeEvent} to all registered listeners. * * @param font the font (<code>null</code> not permitted). * @param notify a flag that controls whether or not listeners are * notified. * * @see #getBaseItemLabelFont() */ public void setBaseItemLabelFont(Font font, boolean notify) { this.baseItemLabelFont = font; if (notify) { fireChangeEvent(); } } |
| |||
/** * Sets the base item label font and, if requested, sends a * {@link RendererChangeEvent} to all registered listeners. * * @param font the font (<code>null</code> not permitted). * @param notify a flag that controls whether or not listeners are * notified. * * @see #getBaseItemLabelFont() */ /** * Sets the item label font for ALL series and, if requested, sends a * {@link RendererChangeEvent} to all registered listeners. * * @param font the font (<code>null</code> permitted). * @param notify a flag that controls whether or not listeners are * notified. * * @deprecated This method should no longer be used (as of version 1.0.6). * It is sufficient to rely on {@link #setSeriesItemLabelFont(int, * Font, boolean)} and {@link #setBaseItemLabelFont(Font, boolean)}. */ public void [[#variable1a051e20]](Font font, boolean notify) { this. [[#variable1a05e0a0]]= font; if (notify) { fireChangeEvent(); } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1a051e20]] | setItemLabelFont |
1 | 2 | [[#1a051e20]] | setBaseItemLabelFont |
2 | 1 | [[#1a05e0a0]] | itemLabelFont |
2 | 2 | [[#1a05e0a0]] | baseItemLabelFont |