File path: /jfreechart-1.0.10/src/org/jfree/chart/ChartPanel.java | File path: /jfreechart-1.0.10/src/org/jfree/chart/ChartPanel.java | |||
Method name: void restoreAutoDomainBounds()
|
Method name: void restoreAutoRangeBounds()
|
|||
Number of AST nodes: 5 | Number of AST nodes: 5 | |||
1 | Plot p = this.chart.getPlot();↵ | 1 | Plot p = this.chart.getPlot();↵ | |
2 | if (p instanceof Zoomable) {↵ | 2 | if (p instanceof Zoomable) {↵ | |
3 | Zoomable z = (Zoomable) p;↵ | 3 | Zoomable z = (Zoomable) p;↵ | |
4 | // we need to guard against this.zoomPoint being null↵ | 4 | // we need to guard against this.zoomPoint being null↵ | |
5 | Point2D zp = (this.zoomPoint != null↵ | 5 | Point2D zp = (this.zoomPoint != null↵ | |
6 | ? this.zoomPoint : new Point());↵ | 6 | ? this.zoomPoint : new Point());↵ | |
7 | z.zoomDomainAxes(0.0, this.info.getPlotInfo(), zp);↵ | 7 | z.zoomRangeAxes(0.0, this.info.getPlotInfo(), zp);↵ | |
8 | } | 8 |
| |
See real code fragment | See real code fragment |
Number of common nesting structure subtrees | 1 |
Number of refactorable cases | 1 |
Number of non-refactorable cases | 0 |
Time elapsed for finding largest common nesting structure subtrees (ms) | 0.1 |
Clones location | Clones are declared in the same class |
Number of node comparisons | 17 |
Number of mapped statements | 5 |
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) | 12.8 |
Clone type | Type 2 |
ID | Statement | ID | Statement | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | Plot p = this.chart.getPlot(); | 1 | Plot p = this.chart.getPlot(); | |||||||||||||||
2 | if (p instanceof Zoomable) | 2 | if (p instanceof Zoomable) | |||||||||||||||
3 | Zoomable z = (Zoomable)p; | 3 | Zoomable z = (Zoomable)p; | |||||||||||||||
4 | Point2D zp = (this.zoomPoint != null ? this.zoomPoint : new Point()); | 4 | Point2D zp = (this.zoomPoint != null ? this.zoomPoint : new Point()); | |||||||||||||||
5 | z.zoomDomainAxes(0.0, this.info.getPlotInfo(), zp); |
| 5 | z.zoomRangeAxes(0.0, this.info.getPlotInfo(), zp); |
Row | Violation |
---|---|
1 | Expression z.zoomDomainAxes(0.0,this.info.getPlotInfo(),zp) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
2 | Expression z.zoomRangeAxes(0.0,this.info.getPlotInfo(),zp) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
3 | Expression z.zoomDomainAxes(0.0,this.info.getPlotInfo(),zp) is a void method call, and thus it cannot be parameterized |
4 | Expression z.zoomRangeAxes(0.0,this.info.getPlotInfo(),zp) is a void method call, and thus it cannot be parameterized |