if (plotInfo.getSubplotCount() == 0) { result = getScreenDataArea(); } else { // get the origin of the zoom selection in the Java2D space used for // drawing the chart (that is, before any scaling to fit the panel) Point2D selectOrigin = translateScreenToJava2D(new Point(x, y)); int subplotIndex = plotInfo.getSubplotIndex(selectOrigin); if (subplotIndex == -1) { return null; } result = scale(plotInfo.getSubplotInfo(subplotIndex).getDataArea()); }
if (plotInfo.getSubplotCount() == 0) result = getScreenDataArea(); else { // get the origin of the zoom selection in the Java2D space used for // drawing the chart (that is, before any scaling to fit the panel) Point2D selectOrigin = translateScreenToJava2D(new Point(x, y)); int subplotIndex = plotInfo.getSubplotIndex(selectOrigin); if (subplotIndex == -1) { return null; } result = scale(plotInfo.getSubplotInfo(subplotIndex).getDataArea()); }
Clone fragments detected by clone detection tool
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
        }
Summary
Number of common nesting structure subtrees1
Number of refactorable cases0
Number of non-refactorable cases1
Time elapsed for finding largest common nesting structure subtrees (ms)0.3
Clones locationClones are in different classes
Number of node comparisons29
  1. {Non-refactorable}
    Mapping Summary
    Number of mapped statements5
    Number of unmapped statements in the first code fragment2
    Number of unmapped statements in the second code fragment2
    Time elapsed for statement mapping (ms)4.5
    Clone typeType 2
    Mapped Statements
    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());
    Preondition Violations
    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
    9
    result = scale(plotInfo.getSubplotInfo(subplotIndex).getDataArea());
    9
    result = scale(plotInfo.getSubplotInfo(subplotIndex).getDataArea());
    9
    result = scale(plotInfo.getSubplotInfo(subplotIndex).getDataArea());
    Preondition Violations
    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
                                                                                                                                              
    Precondition Violations (4)
    Row Violation
    1Unmatched 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
    2Unmatched 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
    3Not all possible execution flows end in a return statement
    4The 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