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: Method name:
Number of AST nodes: 0 Number of AST nodes: 0
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
            
Summary
Number of common nesting structure subtrees0
Number of refactorable cases0
Number of non-refactorable cases0
Time elapsed for finding largest common nesting structure subtrees (ms)0.0
Clones location
Number of node comparisons0