if (subplot != null) { subplot.zoomRangeAxes(factor, info, source, useAnchor); } else { // if the source point doesn't fall within a subplot, we do the // zoom on all subplots... Iterator iterator = getSubplots().iterator(); while (iterator.hasNext()) { subplot = (CategoryPlot) iterator.next(); subplot.zoomRangeAxes(factor, info, source, useAnchor); } }
if (subplot != null) { subplot.zoomDomainAxes(lowerPercent, upperPercent, info, source); } else { // if the source point doesn't fall within a subplot, we do the // zoom on all subplots... Iterator iterator = getSubplots().iterator(); while (iterator.hasNext()) { subplot = (XYPlot) iterator.next(); subplot.zoomDomainAxes(lowerPercent, upperPercent, info, source); } }
Clone fragments detected by clone detection tool
File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedDomainCategoryPlot.java File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedRangeXYPlot.java
Method name: void zoomRangeAxes(double, PlotRenderingInfo, Point2D, boolean) Method name: void zoomDomainAxes(double, double, PlotRenderingInfo, Point2D)
Number of AST nodes: 6 Number of AST nodes: 6
1
if (subplot != null) {
1
if (subplot != null) {
2
            subplot.zoomRangeAxes(factor, info, source, useAnchor);
2
            subplot.zoomDomainAxes(lowerPercent, upperPercent, info, source);
3
        }
3
        }
4
        else {
4
        else {
5
            // if the source point doesn't fall within a subplot, we do the
5
            // if the source point doesn't fall within a subplot, we do the
6
            // zoom on all subplots...
6
            // zoom on all subplots...
7
            Iterator iterator = getSubplots().iterator();
7
            Iterator iterator = getSubplots().iterator();
8
            while (iterator.hasNext()) {
8
            while (iterator.hasNext()) {
9
                subplot = (CategoryPlot) iterator.next();
9
                subplot = (XYPlot) iterator.next();
10
                subplot.zoomRangeAxes(factor, info, source, useAnchor
10
                subplot.zoomDomainAxes(lowerPercent, upperPercent, info,
11
);
11
                        source);
12
            }
12
            }
13
        }
13
        }
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.2
Clones locationClones are in different classes having the same super class
Number of node comparisons18
  1. {Non-refactorable}
    Mapping Summary
    Number of mapped statements4
    Number of unmapped statements in the first code fragment2
    Number of unmapped statements in the second code fragment2
    Time elapsed for statement mapping (ms)10.9
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    2
    if (subplot != null)
    2
    if (subplot != null)
    2
    if (subplot != null)
    Differences
    Expression1Expression2Difference
    org.jfree.chart.plot.CategoryPlotorg.jfree.chart.plot.XYPlotSUBCLASS_TYPE_MISMATCH
    2
    if (subplot != null)
                                                                                                                                      
    3
    subplot.zoomDomainAxes(lowerPercent, upperPercent, info, source);
    3
    subplot.zoomRangeAxes(factor, info, source, useAnchor);
                                                                                                                  
    else
    else
    4
    Iterator iterator = getSubplots().iterator();
    4
    Iterator iterator = getSubplots().iterator();
    5
    while (iterator.hasNext())
    5
    while (iterator.hasNext())
    6
    subplot = (CategoryPlot)iterator.next();
    6
    subplot = (CategoryPlot)iterator.next();
    6
    subplot = (XYPlot)iterator.next();
    Differences
    Expression1Expression2Difference
    org.jfree.chart.plot.CategoryPlotorg.jfree.chart.plot.XYPlotSUBCLASS_TYPE_MISMATCH
    org.jfree.chart.plot.CategoryPlotorg.jfree.chart.plot.XYPlotSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression (CategoryPlot)iterator.next() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression (XYPlot)iterator.next() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    6
    subplot = (XYPlot)iterator.next();
                                                                                                                                      
    7
    subplot.zoomDomainAxes(lowerPercent, upperPercent, info, source);
    Preondition Violations
    Unmatched statement subplot.zoomDomainAxes(lowerPercent,upperPercent,info,source); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted
    7
    subplot.zoomDomainAxes(lowerPercent, upperPercent, info, source);
    7
    subplot.zoomRangeAxes(factor, info, source, useAnchor);
    7
    subplot.zoomRangeAxes(factor, info, source, useAnchor);
    Preondition Violations
    Unmatched statement subplot.zoomRangeAxes(factor,info,source,useAnchor); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted
                                                                                                                  
    Precondition Violations (5)
    Row Violation
    1Expression (CategoryPlot)iterator.next() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    2Expression (XYPlot)iterator.next() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    3Unmatched statement subplot.zoomDomainAxes(lowerPercent,upperPercent,info,source); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted
    4Unmatched statement subplot.zoomRangeAxes(factor,info,source,useAnchor); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted
    5Clone fragment #1 returns variable subplot with type org.jfree.chart.plot.CategoryPlot , while Clone fragment #2 returns variable subplot with type org.jfree.chart.plot.XYPlot