for (int i = 0; i < this.domainAxes.size(); i++) { Axis xAxis = (Axis) this.domainAxes.get(i); if (xAxis != null) { RectangleEdge edge = getDomainAxisEdge(i); space = xAxis.reserveSpace(g2, this, plotArea, edge, space); } }
for (int i = 0; i < this.rangeAxes.size(); i++) { Axis axis = (Axis) this.rangeAxes.get(i); if (axis != null) { RectangleEdge edge = getRangeAxisEdge(i); space = axis.reserveSpace(g2, this, plotArea, edge, space); } }
Clone fragments detected by clone detection tool
File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/CategoryPlot.java File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java
Method name: AxisSpace calculateDomainAxisSpace(Graphics2D, Rectangle2D, AxisSpace) Method name: AxisSpace calculateRangeAxisSpace(Graphics2D, Rectangle2D, AxisSpace)
Number of AST nodes: 5 Number of AST nodes: 5
1
for (int i = 0; i < this.domainAxes.size(); i++) {
1
for (int i = 0; i < this.rangeAxes.size(); i++) {
2
                Axis xAxis = (Axis) this.domainAxes.get(i);
2
                Axis axis = (Axis) this.rangeAxes.get(i);
3
                if (xAxis != null) {
3
                if (axis != null) {
4
                    RectangleEdge edge = getDomainAxisEdge(i);
4
                    RectangleEdge edge = getRangeAxisEdge(i);
5
                    space = xAxis.reserveSpace(g2, this, plotArea, edge, space);
5
                    space = axis.reserveSpace(g2, this, plotArea, edge, space);
6
                }
6
                }
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.8
Clones locationClones are in different classes having the same super class
Number of node comparisons16
  1. {Non-refactorable}
    Mapping Summary
    Number of mapped statements5
    Number of unmapped statements in the first code fragment0
    Number of unmapped statements in the second code fragment0
    Time elapsed for statement mapping (ms)2.5
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    13
    for (int i = 0; i < this.domainAxes.size(); i++)
    13
    for (int i = 0; i < this.domainAxes.size(); i++)
    10
    for (int i = 0; i < this.rangeAxes.size(); i++)
    Differences
    Expression1Expression2Difference
    domainAxesrangeAxesVARIABLE_NAME_MISMATCH
    10
    for (int i = 0; i < this.rangeAxes.size(); i++)
    14
    Axis xAxis = (Axis)this.domainAxes.get(i);
    14
    Axis xAxis = (Axis)this.domainAxes.get(i);
    11
    Axis axis = (Axis)this.rangeAxes.get(i);
    Differences
    Expression1Expression2Difference
    xAxisaxisVARIABLE_NAME_MISMATCH
    domainAxesrangeAxesVARIABLE_NAME_MISMATCH
    11
    Axis axis = (Axis)this.rangeAxes.get(i);
    15
    if (xAxis != null)
    15
    if (xAxis != null)
    12
    if (axis != null)
    Differences
    Expression1Expression2Difference
    xAxisaxisVARIABLE_NAME_MISMATCH
    12
    if (axis != null)
    16
    RectangleEdge edge = getDomainAxisEdge(i);
    16
    RectangleEdge edge = getDomainAxisEdge(i);
    13
    RectangleEdge edge = getRangeAxisEdge(i);
    Differences
    Expression1Expression2Difference
    getDomainAxisEdgegetRangeAxisEdgeMETHOD_INVOCATION_NAME_MISMATCH
    Preondition Violations
    Expression getDomainAxisEdge(i) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression getRangeAxisEdge(i) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    13
    RectangleEdge edge = getRangeAxisEdge(i);
    17
    space = xAxis.reserveSpace(g2, this, plotArea, edge, space);
    17
    space = xAxis.reserveSpace(g2, this, plotArea, edge, space);
    14
    space = axis.reserveSpace(g2, this, plotArea, edge, space);
    Differences
    Expression1Expression2Difference
    xAxisaxisVARIABLE_NAME_MISMATCH
    14
    space = axis.reserveSpace(g2, this, plotArea, edge, space);
    Precondition Violations (2)
    Row Violation
    1Expression getDomainAxisEdge(i) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    2Expression getRangeAxisEdge(i) cannot be parameterized, because it has dependencies to/from statements that will be extracted