for (int i = 0; i < this.subplots.size(); i++) { XYPlot plot = (XYPlot) this.subplots.get(i); PlotRenderingInfo subplotInfo = null; if (info != null) { subplotInfo = new PlotRenderingInfo(info.getOwner()); info.addSubplotInfo(subplotInfo); } plot.draw(g2, this.subplotAreas[i], anchor, parentState, subplotInfo); }
for (int i = 0; i < this.subplots.size(); i++) { CategoryPlot plot = (CategoryPlot) this.subplots.get(i); PlotRenderingInfo subplotInfo = null; if (info != null) { subplotInfo = new PlotRenderingInfo(info.getOwner()); info.addSubplotInfo(subplotInfo); } plot.draw(g2, this.subplotArea[i], null, parentState, subplotInfo); }
Clone fragments detected by clone detection tool
File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedDomainXYPlot.java File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedRangeCategoryPlot.java
Method name: void draw(Graphics2D, Rectangle2D, Point2D, PlotState, PlotRenderingInfo) Method name: void draw(Graphics2D, Rectangle2D, Point2D, PlotState, PlotRenderingInfo)
Number of AST nodes: 7 Number of AST nodes: 7
1
for (int i = 0; i < this.subplots.size(); i++) {
1
for (int i = 0; i < this.subplots.size(); i++) {
2
            XYPlot plot = (XYPlot) this.subplots.get(i);
2
            CategoryPlot plot = (CategoryPlot) this.subplots.get(i);
3
            PlotRenderingInfo subplotInfo = null;
3
            PlotRenderingInfo subplotInfo = null;
4
            if (info != null) {
4
            if (info != null) {
5
                subplotInfo = new PlotRenderingInfo(info.getOwner());
5
                subplotInfo = new PlotRenderingInfo(info.getOwner());
6
                info.addSubplotInfo(subplotInfo);
6
                info.addSubplotInfo(subplotInfo);
7
            }
7
            }
8
            plot.draw(g2, this.subplotAreas[i], anchor, parentState,
8
            plot.draw(g2, this.subplotArea[i], null, parentState,
9
                    subplotInfo);
9
 subplotInfo);
10
        }
10
        }
Summary
Number of common nesting structure subtrees1
Number of refactorable cases1
Number of non-refactorable cases0
Time elapsed for finding largest common nesting structure subtrees (ms)0.6
Clones locationClones are in different classes having the same super class
Number of node comparisons25
  1. {Refactorable}
    Mapping Summary
    Number of mapped statements7
    Number of unmapped statements in the first code fragment0
    Number of unmapped statements in the second code fragment0
    Time elapsed for statement mapping (ms)33.0
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    16
    for (int i = 0; i < this.subplots.size(); i++)
    15
    for (int i = 0; i < this.subplots.size(); i++)
    17
    XYPlot plot = (XYPlot)this.subplots.get(i);
    17
    XYPlot plot = (XYPlot)this.subplots.get(i);
    16
    CategoryPlot plot = (CategoryPlot)this.subplots.get(i);
    Differences
    Expression1Expression2Difference
    org.jfree.chart.plot.XYPlotorg.jfree.chart.plot.CategoryPlotSUBCLASS_TYPE_MISMATCH
    org.jfree.chart.plot.XYPlotorg.jfree.chart.plot.CategoryPlotSUBCLASS_TYPE_MISMATCH
    org.jfree.chart.plot.XYPlotorg.jfree.chart.plot.CategoryPlotSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression (XYPlot)this.subplots.get(i) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression (CategoryPlot)this.subplots.get(i) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    16
    CategoryPlot plot = (CategoryPlot)this.subplots.get(i);
    18
    PlotRenderingInfo subplotInfo = null;
    17
    PlotRenderingInfo subplotInfo = null;
    19
    if (info != null)
    18
    if (info != null)
    20
    subplotInfo = new PlotRenderingInfo(info.getOwner());
    19
    subplotInfo = new PlotRenderingInfo(info.getOwner());
    21
    info.addSubplotInfo(subplotInfo);
    20
    info.addSubplotInfo(subplotInfo);
    22
    plot.draw(g2, this.subplotAreas[i], anchor, parentState, subplotInfo);
    22
    plot.draw(g2, this.subplotAreas[i], anchor, parentState, subplotInfo);
    21
    plot.draw(g2, this.subplotArea[i], null, parentState, subplotInfo);
    Differences
    Expression1Expression2Difference
    subplotAreassubplotAreaVARIABLE_NAME_MISMATCH
    anchornullTYPE_COMPATIBLE_REPLACEMENT
    org.jfree.chart.plot.XYPlotorg.jfree.chart.plot.CategoryPlotSUBCLASS_TYPE_MISMATCH
    21
    plot.draw(g2, this.subplotArea[i], null, parentState, subplotInfo);
    Precondition Violations (2)
    Row Violation
    1Expression (XYPlot)this.subplots.get(i) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    2Expression (CategoryPlot)this.subplots.get(i) cannot be parameterized, because it has dependencies to/from statements that will be extracted