Human h = new Human(); h.setName( new Name( fName, 'X', lName ) ); return h;
Option option = new Option(); option.setDataVersion(version); setInvocationOption(cache, option);
Clone fragments detected by clone detection tool
File path: /hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/hql/ASTParserLoadingTest.java File path: /hibernate-distribution-3.3.2.GA/project/cache-jbosscache2/src/main/java/org/hibernate/cache/jbc2/util/CacheHelper.java
Method name: Human genSimpleHuman(String, String) Method name: void setDataVersionOption(Cache, DataVersion)
Number of AST nodes: 3 Number of AST nodes: 3
1
Human h = new Human();
2
		h.setName( new Name( fName, 'X', lName ) );
3
		return h
1
Option option = new Option();
2
        option.setDataVersion(version);
4
;
3
        setInvocationOption(cache, option);
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 in different classes
Number of node comparisons9
  1. {Non-refactorable}
    Mapping Summary
    Number of mapped statements1
    Number of unmapped statements in the first code fragment2
    Number of unmapped statements in the second code fragment2
    Time elapsed for statement mapping (ms)0.0
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
                                                                
    1
    Option option = new Option();
    1
    Human h = new Human();
                                                  
                                                                        
    2
    option.setDataVersion(version);
    2
    h.setName(new Name(fName, 'X', lName));
    2
    h.setName(new Name(fName, 'X', lName));
    3
    setInvocationOption(cache, option);
    Differences
    Expression1Expression2Difference
    setNamesetInvocationOptionMETHOD_INVOCATION_NAME_MISMATCH
    h.setName(new Name(fName,'X',lName))setInvocationOption(cache,option)ARGUMENT_NUMBER_MISMATCH
    hMISSING_METHOD_INVOCATION_EXPRESSION
    Preondition Violations
    Expression h.setName(new Name(fName,'X',lName)) is a void method call, and thus it cannot be parameterized
    Expression setInvocationOption(cache,option) is a void method call, and thus it cannot be parameterized
    Expression h.setName(new Name(fName,'X',lName)) is a void method call, and thus it cannot be parameterized
    Expression setInvocationOption(cache,option) is a void method call, and thus it cannot be parameterized
    3
    setInvocationOption(cache, option);
    3
    return h;
    3
    return h;
    Preondition Violations
    Unmatched return h;
                            
    Precondition Violations (5)
    Row Violation
    1Expression h.setName(new Name(fName,'X',lName)) is a void method call, and thus it cannot be parameterized
    2Expression setInvocationOption(cache,option) is a void method call, and thus it cannot be parameterized
    3Expression h.setName(new Name(fName,'X',lName)) is a void method call, and thus it cannot be parameterized
    4Expression setInvocationOption(cache,option) is a void method call, and thus it cannot be parameterized
    5Unmatched return h;