File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java | File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java | |||
Method name: void draw(Graphics2D, Rectangle2D, Point2D, PlotState, PlotRenderingInfo)
|
Method name: void draw(Graphics2D, Rectangle2D, Point2D, PlotState, PlotRenderingInfo)
|
|||
Number of AST nodes: 5 | Number of AST nodes: 5 | |||
1 | double y;↵ | 1 | double xx;↵ | |
2 | if (orient == PlotOrientation.VERTICAL) {↵ | 2 | if (orient == PlotOrientation.VERTICAL) {↵ | |
3 | y = rangeAxis.java2DToValue(anchor.getY(), dataArea,↵ | 3 | xx = xAxis.java2DToValue(anchor.getX(), dataArea,↵ | |
4 | getRangeAxisEdge());↵ | 4 | xAxisEdge);↵ | |
5 | }↵ | 5 | }↵ | |
6 | else {↵ | 6 | else {↵ | |
7 | y = rangeAxis.java2DToValue(anchor.getX(), dataArea,↵ | 7 | xx = xAxis.java2DToValue(anchor.getY(), dataArea,↵ | |
8 | getRangeAxisEdge());↵ | 8 | xAxisEdge);↵ | |
9 | }↵ | 9 | }↵ | |
10 | crosshairState.setAnchorY(y); | 10 | crosshairState.setCrosshairX(xx); | |
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.3 |
Clones location | Clones are in the same method |
Number of node comparisons | 14 |
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) | 8.3 |
Clone type | Type 2 |
ID | Statement | ID | Statement | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
34 | double y; |
| 109 | double xx; | |||||||||||||||||||
35 | if (orient == PlotOrientation.VERTICAL) | 110 | if (orient == PlotOrientation.VERTICAL) | ||||||||||||||||||||
36 | y = rangeAxis.java2DToValue(anchor.getY(), dataArea, getRangeAxisEdge()); |
| 111 | xx = xAxis.java2DToValue(anchor.getX(), dataArea, xAxisEdge); | |||||||||||||||||||
else | else | ||||||||||||||||||||||
37 | y = rangeAxis.java2DToValue(anchor.getX(), dataArea, getRangeAxisEdge()); |
| 112 | xx = xAxis.java2DToValue(anchor.getY(), dataArea, xAxisEdge); | |||||||||||||||||||
38 | crosshairState.setAnchorY(y); |
| 113 | crosshairState.setCrosshairX(xx); |
Row | Violation |
---|---|
1 | Expression crosshairState.setAnchorY(y) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
2 | Expression crosshairState.setCrosshairX(xx) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
3 | Expression crosshairState.setAnchorY(y) is a void method call, and thus it cannot be parameterized |
4 | Expression crosshairState.setCrosshairX(xx) is a void method call, and thus it cannot be parameterized |