RectangleConstraint c4 = new RectangleConstraint(width - w[2] - w[3], null, LengthConstraintType.FIXED, 0.0, null, LengthConstraintType.NONE); Size2D size = this.centerBlock.arrange(g2, c4); w[4] = size.width; h[4] = size.height;
RectangleConstraint c2 = new RectangleConstraint(w[0], null, LengthConstraintType.FIXED, 0.0, new Range(0.0, constraint.getHeight() - h[0]), LengthConstraintType.RANGE); Size2D size = this.bottomBlock.arrange(g2, c2); h[1] = size.height;
Clone fragments detected by clone detection tool
File path: /jfreechart-1.0.10/src/org/jfree/chart/block/BorderArrangement.java File path: /jfreechart-1.0.10/src/org/jfree/chart/block/BorderArrangement.java
Method name: Size2D arrangeFN(BlockContainer, Graphics2D, double) Method name: Size2D arrangeFF(BlockContainer, Graphics2D, RectangleConstraint)
Number of AST nodes: 4 Number of AST nodes: 3
1
RectangleConstraint c4 = new RectangleConstraint(width - w[2]
1
RectangleConstraint c2 = new RectangleConstraint(w[0], null,
2
                    - w[3], null, LengthConstraintType.FIXED, 0.0, null,
2
                    LengthConstraintType.FIXED, 0.0, new Range(0.0,
3
                    LengthConstraintType.NONE);
3
                    constraint.getHeight() - h[0]), LengthConstraintType.RANGE);
4
            Size2D size = this.centerBlock.arrange(g2, c4);
4
            Size2D size = this.bottomBlock.arrange(g2, c2);
5
            w[4] = size.width;
6
            h[4] = size.height;
5
            h[1] = size.height;
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.0
Clones locationClones are declared in the same class
Number of node comparisons7
  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 fragment0
    Time elapsed for statement mapping (ms)0.0
    Clone typeType 3
    Mapped Statements
    ID Statement ID Statement
    26
    RectangleConstraint c4 = new RectangleConstraint(width - w[2] - w[3], null, LengthConstraintType.FIXED, 0.0, null, LengthConstraintType.NONE);
    26
    RectangleConstraint c4 = new RectangleConstraint(width - w[2] - w[3], null, LengthConstraintType.FIXED, 0.0, null, LengthConstraintType.NONE);
    10
    RectangleConstraint c2 = new RectangleConstraint(w[0], null, LengthConstraintType.FIXED, 0.0, new Range(0.0, constraint.getHeight() - h[0]), LengthConstraintType.RANGE);
    Differences
    Expression1Expression2Difference
    c4c2VARIABLE_NAME_MISMATCH
    width - w[2] - w[3]w[0]TYPE_COMPATIBLE_REPLACEMENT
    nullnew Range(0.0,constraint.getHeight() - h[0])TYPE_COMPATIBLE_REPLACEMENT
    NONERANGEVARIABLE_NAME_MISMATCH
    10
    RectangleConstraint c2 = new RectangleConstraint(w[0], null, LengthConstraintType.FIXED, 0.0, new Range(0.0, constraint.getHeight() - h[0]), LengthConstraintType.RANGE);
    27
    Size2D size = this.centerBlock.arrange(g2, c4);
    27
    Size2D size = this.centerBlock.arrange(g2, c4);
    11
    Size2D size = this.bottomBlock.arrange(g2, c2);
    Differences
    Expression1Expression2Difference
    c4c2VARIABLE_NAME_MISMATCH
    centerBlockbottomBlockVARIABLE_NAME_MISMATCH
    11
    Size2D size = this.bottomBlock.arrange(g2, c2);
    28
    w[4] = size.width;
    28
    w[4] = size.width;
    Preondition Violations
    Unmatched statement w[4]=size.width; cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted
                                            
    29
    h[4] = size.height;
    29
    h[4] = size.height;
    12
    h[1] = size.height;
    Differences
    Expression1Expression2Difference
    41LITERAL_VALUE_MISMATCH
    12
    h[1] = size.height;
    Precondition Violations (2)
    Row Violation
    1Unmatched statement w[4]=size.width; cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted
    2Clone fragment #1 returns variables size , while Clone fragment #2 returns variables