File path: /jfreechart-1.0.10/src/org/jfree/chart/ChartPanel.java | File path: /jfreechart-1.0.10/swt/org/jfree/experimental/chart/swt/ChartComposite.java | |||
Method name: void setDomainZoomable(boolean)
|
Method name: void setRangeZoomable(boolean)
|
|||
Number of AST nodes: 6 | Number of AST nodes: 6 | |||
1 | if (flag) { ↵ | 1 | if (flag) {↵ | |
2 | Plot plot = this.chart.getPlot(); ↵ | 2 | Plot plot = this.chart.getPlot();↵ | |
3 | if (plot instanceof Zoomable) { ↵ | 3 | if (plot instanceof Zoomable) {↵ | |
4 | Zoomable z = (Zoomable) plot; ↵ | 4 | Zoomable z = (Zoomable) plot;↵ | |
5 | this.domainZoomable = flag && (z.isDomainZoomable()); ↵ | 5 | this.rangeZoomable = flag && (z.isRangeZoomable()); ↵ | |
6 | } ↵ | 6 | }↵ | |
7 | } ↵ | 7 | }↵ | |
8 | else { ↵ | 8 | else {↵ | |
9 | this.domainZoomable = false; ↵ | 9 | this.rangeZoomable = false;↵ | |
10 | } | 10 |
| |
See real code fragment | See real code fragment |
Number of common nesting structure subtrees | 1 |
Number of refactorable cases | 0 |
Number of non-refactorable cases | 1 |
Time elapsed for finding largest common nesting structure subtrees (ms) | 0.2 |
Clones location | Clones are in different classes |
Number of node comparisons | 18 |
Number of mapped statements | 6 |
Number of unmapped statements in the first code fragment | 0 |
Number of unmapped statements in the second code fragment | 0 |
Time elapsed for statement mapping (ms) | 173.1 |
Clone type | Type 2 |
ID | Statement | ID | Statement | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | if (flag) | 1 | if (flag) | ||||||||||||||||||
2 | Plot plot = this.chart.getPlot(); | 2 | Plot plot = this.chart.getPlot(); | ||||||||||||||||||
3 | if (plot instanceof Zoomable) | 3 | if (plot instanceof Zoomable) | ||||||||||||||||||
4 | Zoomable z = (Zoomable)plot; | 4 | Zoomable z = (Zoomable)plot; | ||||||||||||||||||
5 | this.domainZoomable = flag && (z.isDomainZoomable()); |
| 5 | this.rangeZoomable = flag && (z.isRangeZoomable()); | |||||||||||||||||
else | else | ||||||||||||||||||||
6 | this.domainZoomable = false; |
| 6 | this.rangeZoomable = false; |
Row | Violation |
---|---|
1 | Expression this.domainZoomable is a field being modified, and thus it cannot be parameterized |
2 | Expression this.rangeZoomable is a field being modified, and thus it cannot be parameterized |
3 | Expression z.isDomainZoomable() cannot be parameterized, because it has dependencies to/from statements that will be extracted |
4 | Expression z.isRangeZoomable() cannot be parameterized, because it has dependencies to/from statements that will be extracted |
5 | Expression this.domainZoomable is a field being modified, and thus it cannot be parameterized |
6 | Expression this.rangeZoomable is a field being modified, and thus it cannot be parameterized |
7 | The refactoring of the clones is infeasible, because classes org.jfree.chart.ChartPanel and org.jfree.experimental.chart.swt.ChartComposite do not have a common superclass |