super.configureTestElement(el); if (el instanceof XPathAssertion) { XPathAssertion assertion = (XPathAssertion) el; assertion.setNegated(xpath.isNegated()); assertion.setXPathString(xpath.getXPath()); xml.modifyTestElement(assertion); }
super.configure(element); if (element instanceof IfController) { IfController ifController = (IfController) element; theCondition.setText(ifController.getCondition()); evaluateAll.setSelected(ifController.isEvaluateAll()); }
Clone fragments detected by clone detection tool
File path: /jakarta-jmeter-2.3.2/src/org/apache/jmeter/assertions/gui/XPathAssertionGui.java File path: /jakarta-jmeter-2.3.2/src/org/apache/jmeter/control/gui/IfControllerPanel.java
Method name: void modifyTestElement(TestElement) Method name: void configure(TestElement)
Number of AST nodes: 6 Number of AST nodes: 5
1
super.configureTestElement(el);
1
super.configure(element);
2
		if (el instanceof XPathAssertion) {
2
		if (element instanceof 
3
			XPathAssertion assertion = (XPathAssertion) el;
4
			assertion.setNegated(xpath.isNegated());
5
			assertion.setXPathString(xpath.getXPath());
6
			xml.modifyTestElement(assertion
3
IfController) {
4
			IfController ifController = (IfController) element;
5
			theCondition.setText(ifController.getCondition());
7
);
6
			evaluateAll.setSelected(ifController.isEvaluateAll());
8
		}
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.1
Clones locationClones are in different classes having the same super class
Number of node comparisons21
  1. {Non-refactorable}
    Mapping Summary
    Number of mapped statements3
    Number of unmapped statements in the first code fragment3
    Number of unmapped statements in the second code fragment2
    Time elapsed for statement mapping (ms)1.6
    Clone typeType 3
    Mapped Statements
    ID Statement ID Statement
    1
    super.configureTestElement(el);
    1
    super.configureTestElement(el);
    1
    super.configure(element);
    Differences
    Expression1Expression2Difference
    configureTestElementconfigureMETHOD_INVOCATION_NAME_MISMATCH
    elelementVARIABLE_NAME_MISMATCH
    Preondition Violations
    Expression super.configureTestElement(el) is a void method call, and thus it cannot be parameterized
    Expression super.configure(element) is a void method call, and thus it cannot be parameterized
    1
    super.configure(element);
    2
    if (el instanceof XPathAssertion)
    2
    if (el instanceof XPathAssertion)
    2
    if (element instanceof IfController)
    Differences
    Expression1Expression2Difference
    elelementVARIABLE_NAME_MISMATCH
    org.apache.jmeter.assertions.XPathAssertionorg.apache.jmeter.control.IfControllerSUBCLASS_TYPE_MISMATCH
    2
    if (element instanceof IfController)
    3
    XPathAssertion assertion = (XPathAssertion)el;
    3
    XPathAssertion assertion = (XPathAssertion)el;
    3
    IfController ifController = (IfController)element;
    Differences
    Expression1Expression2Difference
    org.apache.jmeter.assertions.XPathAssertionorg.apache.jmeter.control.IfControllerSUBCLASS_TYPE_MISMATCH
    assertionifControllerVARIABLE_NAME_MISMATCH
    org.apache.jmeter.assertions.XPathAssertionorg.apache.jmeter.control.IfControllerSUBCLASS_TYPE_MISMATCH
    org.apache.jmeter.assertions.XPathAssertionorg.apache.jmeter.control.IfControllerSUBCLASS_TYPE_MISMATCH
    elelementVARIABLE_NAME_MISMATCH
    3
    IfController ifController = (IfController)element;
                                                                                                              
    4
    theCondition.setText(ifController.getCondition());
    4
    assertion.setNegated(xpath.isNegated());
                                                                                          
                                                                                                                      
    5
    evaluateAll.setSelected(ifController.isEvaluateAll());
    5
    assertion.setXPathString(xpath.getXPath());
                                                                                                
    6
    xml.modifyTestElement(assertion);
                                                                            
    Precondition Violations (3)
    Row Violation
    1Expression super.configureTestElement(el) is a void method call, and thus it cannot be parameterized
    2Expression super.configure(element) is a void method call, and thus it cannot be parameterized
    3Clone fragment #1 returns variable assertion with type org.apache.jmeter.assertions.XPathAssertion , while Clone fragment #2 returns variable ifController with type org.apache.jmeter.control.IfController