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 addOtherModelEventListeners(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 addOtherModelEventListeners(Object newTarget) { | |
3 | /* Make a copy of the modelelements: */ | 3 | super.addOtherModelEventListeners(newTarget); | |
4 | others = new ArrayList(Model.getFacade().getConnections(newTarget)); | 4 | Collection connections = Model.getFacade().getConnections(newTarget); | |
5 | Iterator i = others.iterator(); | 5 | Collection types = new ArrayList(); | |
6 | while (i.hasNext()) { | 6 | for (Object conn : connections) { | |
7 | Object end = i.next(); | 7 | types.add(Model.getFacade().getType(conn)); | |
8 | Model.getPump().addModelEventListener(this, end, "name"); | 8 | } | |
9 | } | 9 | for (Object classifierRole : types) { | |
10 | } | 10 | others.addAll(Model.getFacade().getBases(classifierRole)); | |
11 | } | |||
12 | for (Object classifier : others) { | |||
13 | Model.getPump().addModelEventListener(this, | |||
14 | classifier, "feature"); | |||
15 | } | |||
16 | } | |||
See real code fragment | See real code fragment |
Number of mapped statements | 4 |
Number of unmapped statements in the first code fragment | 0 |
Number of unmapped statements in the second code fragment | 0 |
Time elapsed for statement mapping (ms) | 0.0 |
Similarity Score | 1.000 |
Clone type | Type 2 |
ID | Statement | ID | Statement | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4 | while (i.hasNext()) |
| 8 | for (Object classifier : others) | |||||||||||||
5 | Object end = i.next(); |
| | ||||||||||||||
6 | Model.getPump().addModelEventListener(this, end, "name"); |
| 9 | Model.getPump().addModelEventListener(this, classifier, "feature"); |
Row | Violation |
---|