Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
6 | 5 | 2 | 0.958 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 6 | 579 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/MeterPlot.java |
2 | 6 | 1783 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/PiePlot.java |
3 | 6 | 374 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/Plot.java |
4 | 6 | 467 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/PolarPlot.java |
5 | 6 | 956 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/SpiderWebPlot.java |
| |||||
/** * Sets the font used to display the value label and sends a * {@link PlotChangeEvent} to all registered listeners. * * @param font the font (<code>null</code> not permitted). * * @see #getValueFont() */ public void setValueFont(Font font) { if (font == null) { throw new IllegalArgumentException("Null \'font\' argument."); } this.valueFont = font; fireChangeEvent(); } |
| |||||
/** * Sets the section label font and sends a {@link PlotChangeEvent} to all * registered listeners. * * @param font the font (<code>null</code> not permitted). * * @see #getLabelFont() */ public void setLabelFont(Font font) { if (font == null) { throw new IllegalArgumentException("Null \'font\' argument."); } this.labelFont = font; fireChangeEvent(); } |
| |||||
/** * Sets the font used to display the 'no data' message and sends a * {@link PlotChangeEvent} to all registered listeners. * * @param font the font (<code>null</code> not permitted). * * @see #getNoDataMessageFont() */ public void setNoDataMessageFont(Font font) { if (font == null) { throw new IllegalArgumentException("Null \'font\' argument."); } this.noDataMessageFont = font; fireChangeEvent(); } |
| |||||
/** * Sets the font used to display the angle labels and sends a * {@link PlotChangeEvent} to all registered listeners. * * @param font the font (<code>null</code> not permitted). * * @see #getAngleLabelFont() */ public void setAngleLabelFont(Font font) { if (font == null) { throw new IllegalArgumentException("Null \'font\' argument."); } this.angleLabelFont = font; fireChangeEvent(); } |
| |||||
/** * Sets the series label font and sends a {@link PlotChangeEvent} to all * registered listeners. * * @param font the font (<code>null</code> not permitted). * * @see #getLabelFont() */ public void setLabelFont(Font font) { if (font == null) { throw new IllegalArgumentException("Null \'font\' argument."); } this.labelFont = font; fireChangeEvent(); } |
| |||
/** * Sets the font used to display the value label and sends a * {@link PlotChangeEvent} to all registered listeners. * * @param font the font (<code>null</code> not permitted). * * @see #getValueFont() */ /** * Sets the font used to display the 'no data' message and sends a * {@link PlotChangeEvent} to all registered listeners. * * @param font the font (<code>null</code> not permitted). * * @see #getNoDataMessageFont() */ /** * Sets the font used to display the angle labels and sends a * {@link PlotChangeEvent} to all registered listeners. * * @param font the font (<code>null</code> not permitted). * * @see #getAngleLabelFont() */ /** * Sets the section label font and sends a {@link PlotChangeEvent} to all * registered listeners. * * @param font the font (<code>null</code> not permitted). * * @see #getLabelFont() */ /** * Sets the series label font and sends a {@link PlotChangeEvent} to all * registered listeners. * * @param font the font (<code>null</code> not permitted). * * @see #getLabelFont() */ public void [[#variable18cb4ec0]](Font font) { if (font == null) { throw new IllegalArgumentException("Null \'font\' argument."); } this. [[#variable18cb5200]]= font; fireChangeEvent(); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18cb4ec0]] | setValueFont |
1 | 2 | [[#18cb4ec0]] | setLabelFont |
1 | 3 | [[#18cb4ec0]] | setNoDataMessageFont |
1 | 4 | [[#18cb4ec0]] | setAngleLabelFont |
1 | 5 | [[#18cb4ec0]] | setLabelFont |
2 | 1 | [[#18cb5200]] | valueFont |
2 | 2 | [[#18cb5200]] | labelFont |
2 | 3 | [[#18cb5200]] | noDataMessageFont |
2 | 4 | [[#18cb5200]] | angleLabelFont |
2 | 5 | [[#18cb5200]] | labelFont |