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: Rectangle2D getScreenDataArea(int, int)
|
Method name: Rectangle getScreenDataArea(int, int)
|
|||
Number of AST nodes: 7 | Number of AST nodes: 7 | |||
1 | if (plotInfo.getSubplotCount() == 0) { ↵ | 1 | if (plotInfo.getSubplotCount() == 0)↵ | |
2 | result = getScreenDataArea();↵ | 2 | result = getScreenDataArea();↵ | |
3 | } ↵ | |||
4 | else { ↵ | 3 | else {↵ | |
5 | // get the origin of the zoom selection in the Java2D space used for ↵ | 4 | // get the origin of the zoom selection in the Java2D space used for↵ | |
6 | // drawing the chart (that is, before any scaling to fit the panel) ↵ | 5 | // drawing the chart (that is, before any scaling to fit the panel)↵ | |
7 | Point2D selectOrigin = translateScreenToJava2D(new Point(x, y)); ↵ | 6 | Point2D selectOrigin = translateScreenToJava2D(new Point(x, y));↵ | |
8 | int subplotIndex = plotInfo.getSubplotIndex(selectOrigin); ↵ | 7 | int subplotIndex = plotInfo.getSubplotIndex(selectOrigin);↵ | |
9 | if (subplotIndex == -1) { ↵ | 8 | if (subplotIndex == -1) {↵ | |
10 | return null; ↵ | 9 | return null;↵ | |
11 | } ↵ | 10 | }↵ | |
12 | result = scale(plotInfo.getSubplotInfo(subplotIndex).getDataArea()); ↵ | 11 | result = scale(plotInfo.getSubplotInfo(subplotIndex).getDataArea());↵ | |
13 | } | 12 |
| |
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 different classes |
Number of node comparisons | 29 |
Number of mapped statements | 5 |
Number of unmapped statements in the first code fragment | 2 |
Number of unmapped statements in the second code fragment | 2 |
Time elapsed for statement mapping (ms) | 4.5 |
Clone type | Type 2 |
ID | Statement | ID | Statement | ||||
---|---|---|---|---|---|---|---|
3 | if (plotInfo.getSubplotCount() == 0) | 3 | if (plotInfo.getSubplotCount() == 0) | ||||
| 4 | result = getScreenDataArea(); | |||||
4 | result = getScreenDataArea(); | | |||||
else | else | ||||||
5 | Point2D selectOrigin = translateScreenToJava2D(new Point(x, y)); | 5 | Point2D selectOrigin = translateScreenToJava2D(new Point(x, y)); | ||||
6 | int subplotIndex = plotInfo.getSubplotIndex(selectOrigin); | 6 | int subplotIndex = plotInfo.getSubplotIndex(selectOrigin); | ||||
7 | if (subplotIndex == -1) | 7 | if (subplotIndex == -1) | ||||
8 | return null; | 8 | return null; | ||||
|
| 9 | result = scale(plotInfo.getSubplotInfo(subplotIndex).getDataArea()); | ||||
9 | result = scale(plotInfo.getSubplotInfo(subplotIndex).getDataArea()); |
| |
Row | Violation |
---|---|
1 | Unmatched statement result=scale(plotInfo.getSubplotInfo(subplotIndex).getDataArea()); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
2 | Unmatched statement result=scale(plotInfo.getSubplotInfo(subplotIndex).getDataArea()); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
3 | Not all possible execution flows end in a return statement |
4 | 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 |