File path: /jfreechart-1.0.10/swt/org/jfree/experimental/chart/swt/ChartComposite.java | File path: /jfreechart-1.0.10/swt/org/jfree/experimental/chart/swt/ChartComposite.java | |||
Method name: void restoreAutoDomainBounds()
|
Method name: void restoreAutoRangeBounds()
|
|||
Number of AST nodes: 3 | Number of AST nodes: 3 | |||
1 | Zoomable z = (Zoomable) p;↵ | 1 | Zoomable z = (Zoomable) p;↵ | |
2 | // we need to guard against this.zoomPoint being null↵ | 2 | // we need to guard against this.zoomPoint being null↵ | |
3 | org.eclipse.swt.graphics.Point zp = ↵ | 3 | org.eclipse.swt.graphics.Point zp = ↵ | |
4 | (this.zoomPoint != null ? this.zoomPoint ↵ | 4 | (this.zoomPoint != null ? this.zoomPoint ↵ | |
5 | : new org.eclipse.swt.graphics.Point(0, 0));↵ | 5 | : new org.eclipse.swt.graphics.Point(0, 0));↵ | |
6 | z.zoomDomainAxes(0.0, this.info.getPlotInfo(), ↵ | 6 | z.zoomRangeAxes(0.0, this.info.getPlotInfo(), ↵ | |
7 | SWTUtils.toAwtPoint(zp)); | 7 |
| |
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.0 |
Clones location | Clones are declared in the same class |
Number of node comparisons | 5 |
Number of mapped statements | 3 |
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) | 0.0 |
Clone type | Type 2 |
ID | Statement | ID | Statement | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3 | Zoomable z = (Zoomable)p; | 3 | Zoomable z = (Zoomable)p; | |||||||||||||||
4 | org.eclipse.swt.graphics.Point zp = (this.zoomPoint != null ? this.zoomPoint : new org.eclipse.swt.graphics.Point(0, 0)); | 4 | org.eclipse.swt.graphics.Point zp = (this.zoomPoint != null ? this.zoomPoint : new org.eclipse.swt.graphics.Point(0, 0)); | |||||||||||||||
5 | z.zoomDomainAxes(0.0, this.info.getPlotInfo(), SWTUtils.toAwtPoint(zp)); |
| 5 | z.zoomRangeAxes(0.0, this.info.getPlotInfo(), SWTUtils.toAwtPoint(zp)); |
Row | Violation |
---|---|
1 | Expression z.zoomDomainAxes(0.0,this.info.getPlotInfo(),SWTUtils.toAwtPoint(zp)) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
2 | Expression z.zoomRangeAxes(0.0,this.info.getPlotInfo(),SWTUtils.toAwtPoint(zp)) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
3 | Expression z.zoomDomainAxes(0.0,this.info.getPlotInfo(),SWTUtils.toAwtPoint(zp)) is a void method call, and thus it cannot be parameterized |
4 | Expression z.zoomRangeAxes(0.0,this.info.getPlotInfo(),SWTUtils.toAwtPoint(zp)) is a void method call, and thus it cannot be parameterized |