/** * Search the attribute named <code>attributeName</code> in the given * relation. If there exist more than one attribute the first one is * returned. * * @param relation * The relation in which to search the attribute. * @param attributeName * The name of the attribute to search. * @return The attribute if found, <code>null</code> else. */ public static Object getAttributeForName(Object relation, String attributeName) { Object attribute = null; Collection attributes = Model.getFacade().getAttributes(relation); for (Iterator it = attributes.iterator(); it.hasNext();) { Object attr = it.next(); if (Model.getFacade().getName(attr).equals(attributeName)) { attribute = attr; break; } } return attribute; }
private Object getStereotype(Object aModel, String stereotypeName) { Collection stereotypes = getExtensionMechanismsHelper().getStereotypes( aModel); for (Object stereotype : stereotypes) { if (stereotypeName.equals(getFacade().getName(stereotype))) { return stereotype; } } return null; }
Clone fragments detected by clone detection tool
File path: /ArgoUML-0.34-src/argouml-sql/src/org/argouml/language/sql/Utils.java File path: /ArgoUML-0.34-src/argouml-cpp/src/org/argouml/language/cpp/profile/BaseProfile.java
Method name: Object getAttributeForName(Object, String) Method name: Object getStereotype(Object, String)
Number of AST nodes: 5 Number of AST nodes: 3
1
/**
1
private Object getStereotype(Object aModel, String stereotypeName) {
2
     * Search the attribute named <code>attributeName</code> in the given
2
        Collection stereotypes = getExtensionMechanismsHelper().getStereotypes(
3
     * relation. If there exist more than one attribute the first one is
3
                aModel);
4
     * returned.
4
        for (Object stereotype : stereotypes) {
5
     * 
5
            if (stereotypeName.equals(getFacade().getName(stereotype))) {
6
     * @param relation
6
                return stereotype;
7
     *            The relation in which to search the attribute.
7
            }
8
     * @param attributeName
8
        }
9
     *            The name of the attribute to search.
9
        return null;
10
     * @return The attribute if found, <code>null</code> else.
10
    }
11
     */
12
    public static Object getAttributeForName(Object relation,
13
            String attributeName) {
14
        Object attribute = null;
15
16
        Collection attributes = Model.getFacade().getAttributes(relation);
17
        for (Iterator it = attributes.iterator(); it.hasNext();) {
18
            Object attr = it.next();
19
            if (Model.getFacade().getName(attr).equals(attributeName)) {
20
                attribute = attr;
21
                break;
22
            }
23
        }
24
25
        return attribute;
26
    }
  1. {Non-refactorable}
    Mapping Summary
    Number of mapped statements3
    Number of unmapped statements in the first code fragment2
    Number of unmapped statements in the second code fragment1
    Time elapsed for statement mapping (ms)0.0
    Similarity Score0.833
    Clone typeType 3
    Mapped Statements
    ID Statement ID Statement
    3
    for (Iterator it = attributes.iterator(); it.hasNext(); )
    3
    for (Iterator it = attributes.iterator(); it.hasNext(); )
    2
    for (Object stereotype : stereotypes)
    Differences
    Expression1Expression2Difference
    attrstereotypeVARIABLE_NAME_MISMATCH
    2
    for (Object stereotype : stereotypes)
    4
    Object attr = it.next();
    4
    Object attr = it.next();
    Differences
    Expression1Expression2Difference
    attrstereotypeVARIABLE_NAME_MISMATCH
                                                      
    5
    if (Model.getFacade().getName(attr).equals(attributeName))
    5
    if (Model.getFacade().getName(attr).equals(attributeName))
    3
    if (stereotypeName.equals(getFacade().getName(stereotype)))
    Differences
    Expression1Expression2Difference
    attributeNamegetFacade().getName(stereotype)TYPE_COMPATIBLE_REPLACEMENT
    Model.getFacade().getName(attr)stereotypeNameTYPE_COMPATIBLE_REPLACEMENT
    Preondition Violations
    Expression getFacade().getName(stereotype) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    3
    if (stereotypeName.equals(getFacade().getName(stereotype)))
                                              
    4
    return stereotype;
    Preondition Violations
    Unmatched statement return stereotype; cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted
    Unmatched return stereotype;
    4
    return stereotype;
    6
    attribute = attr;
    6
    attribute = attr;
    Preondition Violations
    Unmatched statement attribute=attr; cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted
                                        
    7
    break;
    7
    break;
    Preondition Violations
    Unmatched break;
                      
    Precondition Violations (5)
    Row Violation
    1Expression getFacade().getName(stereotype) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    2Unmatched statement return stereotype; cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted
    3Unmatched return stereotype;
    4Unmatched statement attribute=attr; cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted
    5Unmatched break;