if (this.millisecond != FIRST_MILLISECOND_IN_SECOND) { result = new Millisecond(this.millisecond - 1, getSecond()); } else { Second previous = (Second) getSecond().previous(); if (previous != null) { result = new Millisecond(LAST_MILLISECOND_IN_SECOND, previous); } }
if (this.second != LAST_SECOND_IN_MINUTE) { result = new Second(this.second + 1, getMinute()); } else { Minute next = (Minute) getMinute().next(); if (next != null) { result = new Second(FIRST_SECOND_IN_MINUTE, next); } }
Clone fragments detected by clone detection tool
File path: /jfreechart-1.0.10/src/org/jfree/data/time/Millisecond.java File path: /jfreechart-1.0.10/src/org/jfree/data/time/Second.java
Method name: RegularTimePeriod previous() Method name: RegularTimePeriod next()
Number of AST nodes: 5 Number of AST nodes: 5
1
if (this.millisecond != FIRST_MILLISECOND_IN_SECOND) {
1
if (this.second != LAST_SECOND_IN_MINUTE) {
2
            result = new Millisecond(this.millisecond - 1, getSecond());
2
            result = new Second(this.second + 1, getMinute());
3
        }
3
        }
4
        else {
4
        else {
5
            Second previous = (Second) getSecond().previous();
5
            Minute next = (Minute) getMinute().next();
6
            if (previous != null) {
6
            if (next != null) {
7
                result = new Millisecond(LAST_MILLISECOND_IN_SECOND, previous);
7
                result = new Second(FIRST_SECOND_IN_MINUTE, next);
8
            }
8
            }
9
        }
9
        }
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.3
Clones locationClones are in different classes having the same super class
Number of node comparisons13
  1. {Non-refactorable}
    Mapping Summary
    Number of mapped statements4
    Number of unmapped statements in the first code fragment1
    Number of unmapped statements in the second code fragment1
    Time elapsed for statement mapping (ms)10.1
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    2
    if (this.millisecond != FIRST_MILLISECOND_IN_SECOND)
    2
    if (this.millisecond != FIRST_MILLISECOND_IN_SECOND)
    2
    if (this.second != LAST_SECOND_IN_MINUTE)
    Differences
    Expression1Expression2Difference
    millisecondsecondVARIABLE_NAME_MISMATCH
    intbyteVARIABLE_TYPE_MISMATCH
    FIRST_MILLISECOND_IN_SECONDLAST_SECOND_IN_MINUTEVARIABLE_NAME_MISMATCH
    Preondition Violations
    Type int of variable this.millisecond does not match with type byte of variable this.second
    2
    if (this.second != LAST_SECOND_IN_MINUTE)
                                                                                                        
    3
    result = new Second(this.second + 1, getMinute());
    Preondition Violations
    Unmatched statement result=new Second(this.second + 1,getMinute()); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted
    Unmatched statement result=new Second(this.second + 1,getMinute()); cannot be moved before or after the extracted code, because it throws exception(s) that should be caught by a try block that will be extracted
    3
    result = new Second(this.second + 1, getMinute());
    3
    result = new Millisecond(this.millisecond - 1, getSecond());
    3
    result = new Millisecond(this.millisecond - 1, getSecond());
    Preondition Violations
    Unmatched statement result=new Millisecond(this.millisecond - 1,getSecond()); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted
    Unmatched statement result=new Millisecond(this.millisecond - 1,getSecond()); cannot be moved before or after the extracted code, because it throws exception(s) that should be caught by a try block that will be extracted
                                                                                                                            
    else
    else
    4
    Second previous = (Second)getSecond().previous();
    4
    Second previous = (Second)getSecond().previous();
    4
    Minute next = (Minute)getMinute().next();
    Differences
    Expression1Expression2Difference
    org.jfree.data.time.Secondorg.jfree.data.time.MinuteSUBCLASS_TYPE_MISMATCH
    previousnextVARIABLE_NAME_MISMATCH
    org.jfree.data.time.Secondorg.jfree.data.time.MinuteSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.Secondorg.jfree.data.time.MinuteSUBCLASS_TYPE_MISMATCH
    previousnextMETHOD_INVOCATION_NAME_MISMATCH
    getSecondgetMinuteMETHOD_INVOCATION_NAME_MISMATCH
    Preondition Violations
    Expression (Minute)getMinute().next() is a method call throwing exception(s) that should be caught by a try block that will be extracted
    Expression getMinute().next() is a method call throwing exception(s) that should be caught by a try block that will be extracted
    Expression getMinute() is a method call throwing exception(s) that should be caught by a try block that will be extracted
    4
    Minute next = (Minute)getMinute().next();
    5
    if (previous != null)
    5
    if (previous != null)
    5
    if (next != null)
    Differences
    Expression1Expression2Difference
    previousnextVARIABLE_NAME_MISMATCH
    org.jfree.data.time.Secondorg.jfree.data.time.MinuteSUBCLASS_TYPE_MISMATCH
    5
    if (next != null)
    6
    result = new Millisecond(LAST_MILLISECOND_IN_SECOND, previous);
    6
    result = new Millisecond(LAST_MILLISECOND_IN_SECOND, previous);
    6
    result = new Second(FIRST_SECOND_IN_MINUTE, next);
    Differences
    Expression1Expression2Difference
    org.jfree.data.time.RegularTimePeriodorg.jfree.data.time.SecondSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.Millisecondorg.jfree.data.time.SecondSUBCLASS_TYPE_MISMATCH
    LAST_MILLISECOND_IN_SECONDFIRST_SECOND_IN_MINUTEVARIABLE_NAME_MISMATCH
    previousnextVARIABLE_NAME_MISMATCH
    org.jfree.data.time.Secondorg.jfree.data.time.MinuteSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression new Millisecond(LAST_MILLISECOND_IN_SECOND,previous) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression new Second(FIRST_SECOND_IN_MINUTE,next) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    6
    result = new Second(FIRST_SECOND_IN_MINUTE, next);
    Precondition Violations (11)
    Row Violation
    1Type int of variable this.millisecond does not match with type byte of variable this.second
    2Unmatched statement result=new Second(this.second + 1,getMinute()); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted
    3Unmatched statement result=new Second(this.second + 1,getMinute()); cannot be moved before or after the extracted code, because it throws exception(s) that should be caught by a try block that will be extracted
    4Unmatched statement result=new Millisecond(this.millisecond - 1,getSecond()); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted
    5Unmatched statement result=new Millisecond(this.millisecond - 1,getSecond()); cannot be moved before or after the extracted code, because it throws exception(s) that should be caught by a try block that will be extracted
    6Expression (Minute)getMinute().next() is a method call throwing exception(s) that should be caught by a try block that will be extracted
    7Expression getMinute().next() is a method call throwing exception(s) that should be caught by a try block that will be extracted
    8Expression getMinute() is a method call throwing exception(s) that should be caught by a try block that will be extracted
    9Expression new Millisecond(LAST_MILLISECOND_IN_SECOND,previous) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    10Expression new Second(FIRST_SECOND_IN_MINUTE,next) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    11Clone fragment #1 returns variable result with type org.jfree.data.time.RegularTimePeriod , while Clone fragment #2 returns variable result with type org.jfree.data.time.Second