Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
6 | 2 | 1 | 0.982 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 6 | 114 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/ExtendedCategoryAxis.java |
2 | 6 | 135 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/SubCategoryAxis.java |
| |||||
/** * Sets the font for the sublabels and sends an {@link AxisChangeEvent} to * all registered listeners. * * @param font the font (<code>null</code> not permitted). * * @see #getSubLabelFont() */ public void setSubLabelFont(Font font) { if (font == null) { throw new IllegalArgumentException("Null \'font\' argument."); } this.sublabelFont = font; notifyListeners(new AxisChangeEvent(this )); } |
| |||||
/** * Sets the font used to display the sub-category labels and sends an * {@link AxisChangeEvent} to all registered listeners. * * @param font the font (<code>null</code> not permitted). * * @see #getSubLabelFont() */ public void setSubLabelFont(Font font) { if (font == null) { throw new IllegalArgumentException("Null \'font\' argument."); } this.subLabelFont = font; notifyListeners(new AxisChangeEvent(this )); } |
| |||
/** * Sets the font for the sublabels and sends an {@link AxisChangeEvent} to * all registered listeners. * * @param font the font (<code>null</code> not permitted). * * @see #getSubLabelFont() */ /** * Sets the font used to display the sub-category labels and sends an * {@link AxisChangeEvent} to all registered listeners. * * @param font the font (<code>null</code> not permitted). * * @see #getSubLabelFont() */ public void setSubLabelFont(Font font) { if (font == null) { throw new IllegalArgumentException("Null \'font\' argument."); } this. [[#variable18f9e340]]= font; notifyListeners(new AxisChangeEvent(this )); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18f9e340]] | sublabelFont |
1 | 2 | [[#18f9e340]] | subLabelFont |