protected void addOtherModelEventListeners(Object newTarget) { super.addOtherModelEventListeners(newTarget); /* Make a copy of the modelelements: */ others = new ArrayList(Model.getFacade().getConnections(newTarget)); Iterator i = others.iterator(); while (i.hasNext()) { Object end = i.next(); Model.getPump().addModelEventListener(this, end, "name"); } }
@Override protected void removeOtherModelEventListeners(Object oldTarget) { super.removeOtherModelEventListeners(oldTarget); for (Object classifier : others) { Model.getPump().removeModelEventListener(this, classifier, "feature"); } others.clear(); }
Clone fragments detected by clone detection tool
File path: /ArgoUML-0.34-src/argouml/src/argouml-core-umlpropertypanels/src/org/argouml/core/propertypanels/ui/UMLAssociationConnectionListModel.java File path: /ArgoUML-0.34-src/argouml/src/argouml-core-umlpropertypanels/src/org/argouml/core/propertypanels/ui/UMLAssociationRoleBaseComboBoxModel.java
Method name: void addOtherModelEventListeners(Object) Method name: void removeOtherModelEventListeners(Object)
Number of AST nodes: 3 Number of AST nodes: 2
1
protected void addOtherModelEventListeners(Object newTarget) {
1
@Override
2
        super.addOtherModelEventListeners(newTarget);
2
    protected void removeOtherModelEventListeners(Object oldTarget) {
3
        /* Make a copy of the modelelements: */
3
        super.removeOtherModelEventListeners(oldTarget);
4
        others = new ArrayList(Model.getFacade().getConnections(newTarget));
4
        for (Object classifier : others) {
5
        Iterator i = others.iterator();
5
            Model.getPump().removeModelEventListener(this, 
6
        while (i.hasNext()) {
6
                    classifier, "feature");
7
            Object end = i.next();
7
        }
8
            Model.getPump().addModelEventListener(this, end, "name");
8
        others.clear();
9
        }
9
    }
10
    }
  1. {Non-refactorable}
    Mapping Summary
    Number of mapped statements4
    Number of unmapped statements in the first code fragment0
    Number of unmapped statements in the second code fragment0
    Time elapsed for statement mapping (ms)0.0
    Similarity Score0.667
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    4
    while (i.hasNext())
    4
    while (i.hasNext())
    2
    for (Object classifier : others)
    Differences
    Expression1Expression2Difference
    endclassifierVARIABLE_NAME_MISMATCH
    2
    for (Object classifier : others)
    5
    Object end = i.next();
    5
    Object end = i.next();
    Differences
    Expression1Expression2Difference
    endclassifierVARIABLE_NAME_MISMATCH
                                                  
    6
    Model.getPump().addModelEventListener(this, end, "name");
    6
    Model.getPump().addModelEventListener(this, end, "name");
    3
    Model.getPump().removeModelEventListener(this, classifier, "feature");
    Differences
    Expression1Expression2Difference
    addModelEventListenerremoveModelEventListenerMETHOD_INVOCATION_NAME_MISMATCH
    endclassifierVARIABLE_NAME_MISMATCH
    "name""feature"LITERAL_VALUE_MISMATCH
    Preondition Violations
    Expression Model.getPump().removeModelEventListener(this,classifier,"feature") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression Model.getPump().addModelEventListener(this,end,"name") is a void method call, and thus it cannot be parameterized
    Expression Model.getPump().removeModelEventListener(this,classifier,"feature") is a void method call, and thus it cannot be parameterized
    3
    Model.getPump().removeModelEventListener(this, classifier, "feature");
    Precondition Violations (3)
    Row Violation
    1Expression Model.getPump().removeModelEventListener(this,classifier,"feature") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    2Expression Model.getPump().addModelEventListener(this,end,"name") is a void method call, and thus it cannot be parameterized
    3Expression Model.getPump().removeModelEventListener(this,classifier,"feature") is a void method call, and thus it cannot be parameterized