Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
6 | 2 | 2 | 0.958 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 6 | 268 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/FastScatterPlot.java |
2 | 6 | 297 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/FastScatterPlot.java |
| |||||
/** * Sets the domain axis and sends a {@link PlotChangeEvent} to all * registered listeners. * * @param axis the axis (<code>null</code> not permitted). * * @since 1.0.3 * * @see #getDomainAxis() */ public void setDomainAxis(ValueAxis axis) { if (axis == null) { throw new IllegalArgumentException("Null \'axis\' argument."); } this.domainAxis = axis; fireChangeEvent(); } |
| |||||
/** * Sets the range axis and sends a {@link PlotChangeEvent} to all * registered listeners. * * @param axis the axis (<code>null</code> not permitted). * * @since 1.0.3 * * @see #getRangeAxis() */ public void setRangeAxis(ValueAxis axis) { if (axis == null) { throw new IllegalArgumentException("Null \'axis\' argument."); } this.rangeAxis = axis; fireChangeEvent(); } |
| |||
/** * Sets the range axis and sends a {@link PlotChangeEvent} to all * registered listeners. * * @param axis the axis (<code>null</code> not permitted). * * @since 1.0.3 * * @see #getRangeAxis() */ /** * Sets the domain axis and sends a {@link PlotChangeEvent} to all * registered listeners. * * @param axis the axis (<code>null</code> not permitted). * * @since 1.0.3 * * @see #getDomainAxis() */ public void [[#variable1a02ca60]](ValueAxis axis) { if (axis == null) { throw new IllegalArgumentException("Null \'axis\' argument."); } this. [[#variable1a02ca00]]= axis; fireChangeEvent(); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1a02ca60]] | setDomainAxis |
1 | 2 | [[#1a02ca60]] | setRangeAxis |
2 | 1 | [[#1a02ca00]] | domainAxis |
2 | 2 | [[#1a02ca00]] | rangeAxis |