File path: /jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/StackedXYAreaRenderer2.java | File path: /jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/StackedXYAreaRenderer2.java | |||
Method name: void drawItem(Graphics2D, XYItemRendererState, Rectangle2D, PlotRenderingInfo, XYPlot, ValueAxis, ValueAxis, XYDataset, int, int, CrosshairState, int)
|
Method name: void drawItem(Graphics2D, XYItemRendererState, Rectangle2D, PlotRenderingInfo, XYPlot, ValueAxis, ValueAxis, XYDataset, int, int, CrosshairState, int)
|
|||
Number of AST nodes: 8 | Number of AST nodes: 8 | |||
1 | if (orientation == PlotOrientation.VERTICAL) {↵ | 1 | if (orientation == PlotOrientation.VERTICAL) {↵ | |
2 | left.moveTo(transX1, transStack1);↵ | 2 | right.moveTo(transX1, transStack1);↵ | |
3 | left.lineTo(transX1, transY1);↵ | 3 | right.lineTo(transX1, transY1);↵ | |
4 | left.lineTo(transXLeft, transStackLeft);↵ | 4 | right.lineTo(transXRight, transStackRight);↵ | |
5 | }↵ | 5 | }↵ | |
6 | else {↵ | 6 | else {↵ | |
7 | left.moveTo(transStack1, transX1);↵ | 7 | right.moveTo(transStack1, transX1);↵ | |
8 | left.lineTo(transY1, transX1);↵ | 8 | right.lineTo(transY1, transX1);↵ | |
9 | left.lineTo(transStackLeft, transXLeft);↵ | 9 | right.lineTo(transStackRight, transXRight);↵ | |
10 | }↵ | 10 | }↵ | |
11 | left.closePath(); | 11 | right.closePath(); | |
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.3 |
Clones location | Clones are in the same method |
Number of node comparisons | 52 |
Number of mapped statements | 8 |
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) | 28.9 |
Clone type | Type 2 |
ID | Statement | ID | Statement | |||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
58 | if (orientation == PlotOrientation.VERTICAL) | 80 | if (orientation == PlotOrientation.VERTICAL) | |||||||||||||||||
59 | left.moveTo(transX1, transStack1); |
| 81 | right.moveTo(transX1, transStack1); | ||||||||||||||||
60 | left.lineTo(transX1, transY1); |
| 82 | right.lineTo(transX1, transY1); | ||||||||||||||||
61 | left.lineTo(transXLeft, transStackLeft); |
| 83 | right.lineTo(transXRight, transStackRight); | ||||||||||||||||
else | else | |||||||||||||||||||
62 | left.moveTo(transStack1, transX1); |
| 84 | right.moveTo(transStack1, transX1); | ||||||||||||||||
63 | left.lineTo(transY1, transX1); |
| 85 | right.lineTo(transY1, transX1); | ||||||||||||||||
64 | left.lineTo(transStackLeft, transXLeft); |
| 86 | right.lineTo(transStackRight, transXRight); | ||||||||||||||||
65 | left.closePath(); |
| 87 | right.closePath(); |
Row | Violation |
---|