if ((yyAverage > (dataArea.getMinY() - aRadius)) && (yyAverage < (dataArea.getMaxY() + aRadius))) { Ellipse2D.Double avgEllipse = new Ellipse2D.Double(xx + aRadius, yyAverage - aRadius, aRadius * 2, aRadius * 2); g2.fill(avgEllipse); g2.draw(avgEllipse); }
if ((yyAverage > (dataArea.getMinY() - aRadius)) && (yyAverage < (dataArea.getMaxY() + aRadius))) { Ellipse2D.Double avgEllipse = new Ellipse2D.Double(xx - aRadius, yyAverage - aRadius, aRadius * 2, aRadius * 2); g2.fill(avgEllipse); g2.draw(avgEllipse); }
Clone fragments detected by clone detection tool
File path: /jfreechart-1.0.10/src/org/jfree/chart/renderer/category/BoxAndWhiskerRenderer.java File path: /jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYBoxAndWhiskerRenderer.java
Method name: void drawVerticalItem(Graphics2D, CategoryItemRendererState, Rectangle2D, CategoryPlot, CategoryAxis, ValueAxis, CategoryDataset, int, int) Method name: void drawVerticalItem(Graphics2D, Rectangle2D, PlotRenderingInfo, XYPlot, ValueAxis, ValueAxis, XYDataset, int, int, CrosshairState, int)
Number of AST nodes: 4 Number of AST nodes: 4
1
if ((yyAverage > (dataArea.getMinY() - aRadius))
1
if ((yyAverage > (dataArea.getMinY() - aRadius)) 
2
                    && (yyAverage < (dataArea.getMaxY() + aRadius))) {
2
                    && (yyAverage < (dataArea.getMaxY() + aRadius))) {
3
                Ellipse2D.Double avgEllipse = new Ellipse2D.Double(xx + aRadius,
3
                Ellipse2D.Double avgEllipse = new Ellipse2D.Double(xx - aRadius, 
4
                        yyAverage - aRadius, aRadius * 2, aRadius * 2);
4
                        yyAverage - aRadius, aRadius * 2, aRadius * 2);
5
                g2.fill(avgEllipse);
5
                g2.fill(avgEllipse);
6
                g2.draw(avgEllipse);
6
                g2.draw(avgEllipse);
7
            }
7
            }
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.5
Clones locationClones are in different classes having the same super class
Number of node comparisons17
  1. {Non-refactorable}
    Mapping Summary
    Number of mapped statements3
    Number of unmapped statements in the first code fragment1
    Number of unmapped statements in the second code fragment1
    Time elapsed for statement mapping (ms)1.4
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    49
    if ((yyAverage > (dataArea.getMinY() - aRadius)) && (yyAverage < (dataArea.getMaxY() + aRadius)))
    60
    if ((yyAverage > (dataArea.getMinY() - aRadius)) && (yyAverage < (dataArea.getMaxY() + aRadius)))
    50
    Ellipse2D.Double avgEllipse = new Ellipse2D.Double(xx + aRadius, yyAverage - aRadius, aRadius * 2, aRadius * 2);
    50
    Ellipse2D.Double avgEllipse = new Ellipse2D.Double(xx + aRadius, yyAverage - aRadius, aRadius * 2, aRadius * 2);
    Preondition Violations
    Unmatched statement Ellipse2D.Double avgEllipse=new Ellipse2D.Double(xx + aRadius,yyAverage - aRadius,aRadius * 2,aRadius * 2); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted
                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                  
    61
    Ellipse2D.Double avgEllipse = new Ellipse2D.Double(xx - aRadius, yyAverage - aRadius, aRadius * 2, aRadius * 2);
    Preondition Violations
    Unmatched statement Ellipse2D.Double avgEllipse=new Ellipse2D.Double(xx - aRadius,yyAverage - aRadius,aRadius * 2,aRadius * 2); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted
    61
    Ellipse2D.Double avgEllipse = new Ellipse2D.Double(xx - aRadius, yyAverage - aRadius, aRadius * 2, aRadius * 2);
    51
    g2.fill(avgEllipse);
    62
    g2.fill(avgEllipse);
    52
    g2.draw(avgEllipse);
    63
    g2.draw(avgEllipse);
    Precondition Violations (2)
    Row Violation
    1Unmatched statement Ellipse2D.Double avgEllipse=new Ellipse2D.Double(xx + aRadius,yyAverage - aRadius,aRadius * 2,aRadius * 2); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted
    2Unmatched statement Ellipse2D.Double avgEllipse=new Ellipse2D.Double(xx - aRadius,yyAverage - aRadius,aRadius * 2,aRadius * 2); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted