DialLayer current = (DialLayer) iterator.next(); if (current.isVisible()) { if (current.isClippedToWindow()) { Shape savedClip = g2.getClip(); g2.clip(this.dialFrame.getWindow(frame)); current.draw(g2, this, frame, area); g2.setClip(savedClip); } else { current.draw(g2, this, frame, area); } }
DialPointer current = (DialPointer) iterator.next(); if (current.isVisible()) { if (current.isClippedToWindow()) { Shape savedClip = g2.getClip(); g2.clip(this.dialFrame.getWindow(frame)); current.draw(g2, this, frame, area); g2.setClip(savedClip); } else { current.draw(g2, this, frame, area); } }
Clone fragments detected by clone detection tool
File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialPlot.java File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialPlot.java
Method name: void draw(Graphics2D, Rectangle2D, Point2D, PlotState, PlotRenderingInfo) Method name: void draw(Graphics2D, Rectangle2D, Point2D, PlotState, PlotRenderingInfo)
Number of AST nodes: 8 Number of AST nodes: 8
1
DialLayer current = (DialLayer) iterator.next();
1
DialPointer current = (DialPointer) iterator.next();
2
            if (current.isVisible()) {
2
            if (current.isVisible()) {
3
                if (current.isClippedToWindow()) {
3
                if (current.isClippedToWindow()) {
4
                    Shape savedClip = g2.getClip();
4
                    Shape savedClip = g2.getClip();
5
                    g2.clip(this.dialFrame.getWindow(frame));
5
                    g2.clip(this.dialFrame.getWindow(frame));
6
                    current.draw(g2, this, frame, area);
6
                    current.draw(g2, this, frame, area);
7
                    g2.setClip(savedClip);
7
                    g2.setClip(savedClip);
8
                }
8
                }
9
                else {
9
                else {
10
                    current.draw(g2, this, frame, area);
10
                    current.draw(g2, this, frame, area);
11
                }
11
                }
12
            }
12
            }
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.3
Clones locationClones are in the same method
Number of node comparisons40
  1. {Refactorable}
    Mapping Summary
    Number of mapped statements8
    Number of unmapped statements in the first code fragment0
    Number of unmapped statements in the second code fragment0
    Time elapsed for statement mapping (ms)40.8
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    13
    DialLayer current = (DialLayer)iterator.next();
    13
    DialLayer current = (DialLayer)iterator.next();
    23
    DialPointer current = (DialPointer)iterator.next();
    Differences
    Expression1Expression2Difference
    org.jfree.chart.plot.dial.DialLayerorg.jfree.chart.plot.dial.DialPointerSUBCLASS_TYPE_MISMATCH
    org.jfree.chart.plot.dial.DialLayerorg.jfree.chart.plot.dial.DialPointerSUBCLASS_TYPE_MISMATCH
    org.jfree.chart.plot.dial.DialLayerorg.jfree.chart.plot.dial.DialPointerSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression (DialLayer)iterator.next() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression (DialPointer)iterator.next() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    23
    DialPointer current = (DialPointer)iterator.next();
    14
    if (current.isVisible())
    14
    if (current.isVisible())
    24
    if (current.isVisible())
    Differences
    Expression1Expression2Difference
    org.jfree.chart.plot.dial.DialLayerorg.jfree.chart.plot.dial.DialPointerSUBCLASS_TYPE_MISMATCH
    24
    if (current.isVisible())
    15
    if (current.isClippedToWindow())
    15
    if (current.isClippedToWindow())
    25
    if (current.isClippedToWindow())
    Differences
    Expression1Expression2Difference
    org.jfree.chart.plot.dial.DialLayerorg.jfree.chart.plot.dial.DialPointerSUBCLASS_TYPE_MISMATCH
    25
    if (current.isClippedToWindow())
    16
    Shape savedClip = g2.getClip();
    26
    Shape savedClip = g2.getClip();
    17
    g2.clip(this.dialFrame.getWindow(frame));
    27
    g2.clip(this.dialFrame.getWindow(frame));
    18
    current.draw(g2, this, frame, area);
    18
    current.draw(g2, this, frame, area);
    28
    current.draw(g2, this, frame, area);
    Differences
    Expression1Expression2Difference
    org.jfree.chart.plot.dial.DialLayerorg.jfree.chart.plot.dial.DialPointerSUBCLASS_TYPE_MISMATCH
    28
    current.draw(g2, this, frame, area);
    19
    g2.setClip(savedClip);
    29
    g2.setClip(savedClip);
    else
    else
    20
    current.draw(g2, this, frame, area);
    20
    current.draw(g2, this, frame, area);
    30
    current.draw(g2, this, frame, area);
    Differences
    Expression1Expression2Difference
    org.jfree.chart.plot.dial.DialLayerorg.jfree.chart.plot.dial.DialPointerSUBCLASS_TYPE_MISMATCH
    30
    current.draw(g2, this, frame, area);
    Precondition Violations (2)
    Row Violation
    1Expression (DialLayer)iterator.next() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    2Expression (DialPointer)iterator.next() cannot be parameterized, because it has dependencies to/from statements that will be extracted