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.subplotAreas[i], null, parentState, subplotInfo); }
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); }
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/CombinedDomainXYPlot.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
            CategoryPlot plot = (CategoryPlot) this.subplots.get(i);
2
            XYPlot plot = (XYPlot) 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], null, parentState,
8
            plot.draw(g2, this.subplotAreas[i], anchor, 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)28.5
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    16
    for (int i = 0; i < this.subplots.size(); i++)
    16
    for (int i = 0; i < this.subplots.size(); i++)
    17
    CategoryPlot plot = (CategoryPlot)this.subplots.get(i);
    17
    CategoryPlot plot = (CategoryPlot)this.subplots.get(i);
    17
    XYPlot plot = (XYPlot)this.subplots.get(i);
    Differences
    Expression1Expression2Difference
    org.jfree.chart.plot.CategoryPlotorg.jfree.chart.plot.XYPlotSUBCLASS_TYPE_MISMATCH
    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)this.subplots.get(i) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression (XYPlot)this.subplots.get(i) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    17
    XYPlot plot = (XYPlot)this.subplots.get(i);
    18
    PlotRenderingInfo subplotInfo = null;
    18
    PlotRenderingInfo subplotInfo = null;
    19
    if (info != null)
    19
    if (info != null)
    20
    subplotInfo = new PlotRenderingInfo(info.getOwner());
    20
    subplotInfo = new PlotRenderingInfo(info.getOwner());
    21
    info.addSubplotInfo(subplotInfo);
    21
    info.addSubplotInfo(subplotInfo);
    22
    plot.draw(g2, this.subplotAreas[i], null, parentState, subplotInfo);
    22
    plot.draw(g2, this.subplotAreas[i], null, parentState, subplotInfo);
    22
    plot.draw(g2, this.subplotAreas[i], anchor, parentState, subplotInfo);
    Differences
    Expression1Expression2Difference
    nullanchorTYPE_COMPATIBLE_REPLACEMENT
    org.jfree.chart.plot.CategoryPlotorg.jfree.chart.plot.XYPlotSUBCLASS_TYPE_MISMATCH
    22
    plot.draw(g2, this.subplotAreas[i], anchor, parentState, subplotInfo);
    Precondition Violations (2)
    Row Violation
    1Expression (CategoryPlot)this.subplots.get(i) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    2Expression (XYPlot)this.subplots.get(i) cannot be parameterized, because it has dependencies to/from statements that will be extracted