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.964 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 6 | 160 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialTextAnnotation.java |
2 | 6 | 326 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialValueIndicator.java |
3 | 6 | 626 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/StandardDialScale.java |
| |||||
/** * Sets the font used to display the label and sends a * {@link DialLayerChangeEvent} to all registered listeners. * * @param font the font (<code>null</code> not permitted). * * @see #getFont() */ public void setFont(Font font) { if (font == null) { throw new IllegalArgumentException("Null \'font\' argument."); } this.font = font; notifyListeners(new DialLayerChangeEvent(this )); } |
| |||||
/** * Sets the font and sends a {@link DialLayerChangeEvent} to all registered * listeners. * * @param font the font (<code>null</code> not permitted). */ public void setFont(Font font) { if (font == null) { throw new IllegalArgumentException("Null \'font\' argument."); } this.font = font; notifyListeners(new DialLayerChangeEvent(this )); } |
| |||||
/** * Sets the font used to display the tick labels and sends a * {@link DialLayerChangeEvent} to all registered listeners. * * @param font the font (<code>null</code> not permitted). * * @see #getTickLabelFont() */ public void setTickLabelFont(Font font) { if (font == null) { throw new IllegalArgumentException("Null \'font\' argument."); } this.tickLabelFont = font; notifyListeners(new DialLayerChangeEvent(this )); } |
| |||
/** * Sets the font used to display the label and sends a * {@link DialLayerChangeEvent} to all registered listeners. * * @param font the font (<code>null</code> not permitted). * * @see #getFont() */ /** * Sets the font used to display the tick labels and sends a * {@link DialLayerChangeEvent} to all registered listeners. * * @param font the font (<code>null</code> not permitted). * * @see #getTickLabelFont() */ /** * Sets the font and sends a {@link DialLayerChangeEvent} to all registered * listeners. * * @param font the font (<code>null</code> not permitted). */ public void [[#variable18e2b0c0]](Font font) { if (font == null) { throw new IllegalArgumentException("Null \'font\' argument."); } this. [[#variable18e2b000]]= font; notifyListeners(new DialLayerChangeEvent(this )); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18e2b0c0]] | setFont |
1 | 2 | [[#18e2b0c0]] | setFont |
1 | 3 | [[#18e2b0c0]] | setTickLabelFont |
2 | 1 | [[#18e2b000]] | font |
2 | 2 | [[#18e2b000]] | font |
2 | 3 | [[#18e2b000]] | tickLabelFont |