@Override
public void initialiseListener(Object modelElement) {
addElementListener(modelElement,
new String[] {"name", "remove", "stereotype"} );
Collection c = Model.getFacade().getStereotypes(modelElement);
for (Object st : c) {
addElementListener(st, new String[] {"name", "remove"});
}
}
@Override
protected void updateListeners(Object oldOwner, Object newOwner) {
super.updateListeners(oldOwner, newOwner);
if (newOwner != null) {
Collection c = Model.getFacade().getStereotypes(newOwner);
Iterator i = c.iterator();
while (i.hasNext()) {
Object st = i.next();
addElementListener(st, "name");
}
}
}
Clone fragments detected by clone detection tool
File path: /ArgoUML-0.34-src/argouml/src/argouml-app/src/org/argouml/notation/providers/EnumerationLiteralNotation.java
|
|
File path: /ArgoUML-0.34-src/argouml/src/argouml-app/src/org/argouml/uml/diagram/deployment/ui/AbstractFigComponent.java
|
Method name: void initialiseListener(Object)
|
|
Method name: void updateListeners(Object, Object)
|
Number of AST nodes: 2
|
|
Number of AST nodes: 3
|
|
1 | @Override | | 1 | @Override |
2 | public void initialiseListener(Object modelElement) { | | 2 | protected void updateListeners(Object oldOwner, Object newOwner) { |
3 | addElementListener(modelElement, | | 3 | super.updateListeners(oldOwner, newOwner); |
4 | new String[] {"name", "remove", "stereotype"} ); | | 4 | if (newOwner != null) { |
5 | Collection c = Model.getFacade().getStereotypes(modelElement); | | 5 | Collection c = Model.getFacade().getStereotypes(newOwner); |
6 | for (Object st : c) { | | 6 | Iterator i = c.iterator(); |
7 | addElementListener(st, new String[] {"name", "remove"}); | | 7 | while (i.hasNext()) { |
8 | } | | 8 | Object st = i.next(); |
9 | } | | 9 | addElementListener(st, "name"); |
| | | 10 | } |
| | | 11 | } |
| | | 12 | } |
See real code fragment |
|
See real code fragment |
-
{Non-refactorable}
Mapping Summary
Number of mapped statements | 3 |
Number of unmapped statements in the first code fragment | 1 |
Number of unmapped statements in the second code fragment | 1 |
Time elapsed for statement mapping (ms) | 0.0 |
Similarity Score | 0.500 |
Clone type | Type 3 |
Mapped Statements
ID |
Statement |
|
ID |
Statement |
3 | for (Object st : c) | | 5 | while (i.hasNext()) |
4 | addElementListener(st, new String[] {"name", "remove"}); | | | |
| | | 6 | |
| | | 7 | addElementListener(st, "name"); |
Precondition Violations (2)
Row |
Violation |
1 | Unmatched statement addElementListener(st,new String[]{"name","remove"}); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
2 | Unmatched statement addElementListener(st,"name"); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |