if (focusOwner == null) return; String action = (String) e.getActionCommand(); Action a = focusOwner.getActionMap().get(action); if (a != null) a.actionPerformed(new ActionEvent(focusOwner, ActionEvent.ACTION_PERFORMED, null));
if (focusOwner == null) return; String action = (String) e.getActionCommand(); Action a = focusOwner.getActionMap().get(action); if (a != null) a.actionPerformed(new ActionEvent(focusOwner, ActionEvent.ACTION_PERFORMED, null));
Clone fragments detected by clone detection tool
File path: /columba-1.4-src/core/src/main/java/org/columba/core/gui/globalactions/CopyAction.java File path: /columba-1.4-src/core/src/main/java/org/columba/core/gui/globalactions/PasteAction.java
Method name: void actionPerformed(ActionEvent) Method name: void actionPerformed(ActionEvent)
Number of AST nodes: 6 Number of AST nodes: 6
1
if (focusOwner == null)
1
if (focusOwner == null)
2
			return;
2
			return;
3
		String action = (String) e.getActionCommand();
3
		String action = (String) e.getActionCommand();
4
		Action a = focusOwner.getActionMap().get(action);
4
		Action a = focusOwner.getActionMap().get(action);
5
		if (a != null)
5
		if (a != null)
6
			a.actionPerformed(new ActionEvent(focusOwner,
6
			a.actionPerformed(new ActionEvent(focusOwner,
7
					ActionEvent.ACTION_PERFORMED, null));
7
					ActionEvent.ACTION_PERFORMED, null));
Summary
Number of common nesting structure subtrees1
Number of refactorable cases1
Number of non-refactorable cases0
Time elapsed for finding largest common nesting structure subtrees (ms)0.4
Clones locationClones are in different classes having the same super class
Number of node comparisons14
  1. {Refactorable}
    Mapping Summary
    Number of mapped statements6
    Number of unmapped statements in the first code fragment0
    Number of unmapped statements in the second code fragment0
    Time elapsed for statement mapping (ms)2.0
    Clone typeType 1
    Mapped Statements
    ID Statement ID Statement
    1
    if (focusOwner == null)
    1
    if (focusOwner == null)
    2
    return;
    2
    return;
    3
    String action = (String)e.getActionCommand();
    3
    String action = (String)e.getActionCommand();
    4
    Action a = focusOwner.getActionMap().get(action);
    4
    Action a = focusOwner.getActionMap().get(action);
    5
    if (a != null)
    5
    if (a != null)
    6
    a.actionPerformed(new ActionEvent(focusOwner, ActionEvent.ACTION_PERFORMED, null));
    6
    a.actionPerformed(new ActionEvent(focusOwner, ActionEvent.ACTION_PERFORMED, null));
    Precondition Violations (0)
    Row Violation