try { getEditorSite().getPage().showView("org.eclipse.ui.views.PropertySheet"); } catch (PartInitException exception) { EcoreEditorPlugin.INSTANCE.log(exception); }
try { markerUtil.createMarkers(diagnostic); } catch (CoreException exception) { openErrorDialog(CommonUIPlugin.getPlugin().getString("_UI_CreateMarkerError_message"), exception); }
Clone fragments detected by clone detection tool
File path: /emf-2.4.1/src/org/eclipse/emf/ecore/presentation/EcoreEditor.java File path: /emf-2.4.1/src/org/eclipse/emf/common/ui/editor/ProblemEditorPart.java
Method name: void mouseDoubleClick(MouseEvent) Method name: void createMarkers()
Number of AST nodes: 2 Number of AST nodes: 2
1
try
1
try
2
            {
2
        {
3
              getEditorSite().getPage().showView("org.eclipse.ui.views.PropertySheet");
3
          markerUtil.createMarkers(diagnostic);
4
            }
4
        
5
    
5
}
6
        catch (PartInitException exception)
6
        catch (CoreException exception)
7
            {
7
        {
8
              EcoreEditorPlugin.INSTANCE.log(exception);
8
          openErrorDialog(CommonUIPlugin.getPlugin().getString("_UI_CreateMarkerError_message"), exception);
9
            }
9
        }
Summary
Number of common nesting structure subtrees1
Number of refactorable cases0
Number of non-refactorable cases1
Time elapsed for finding largest common nesting structure subtrees (ms)0.4
Clones locationClones are in different classes
Number of node comparisons5
  1. {Non-refactorable}
    Mapping Summary
    Number of mapped statements1
    Number of unmapped statements in the first code fragment1
    Number of unmapped statements in the second code fragment1
    Time elapsed for statement mapping (ms)3.0
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    2
    try
    2
    try
    4
    try
    Differences
    Expression1Expression2Difference
    org.eclipse.ui.PartInitExceptionorg.eclipse.core.runtime.CoreExceptionSUBCLASS_TYPE_MISMATCH
    org.eclipse.ui.PartInitExceptionorg.eclipse.core.runtime.CoreExceptionSUBCLASS_TYPE_MISMATCH
    logopenErrorDialogMETHOD_INVOCATION_NAME_MISMATCH
    EcoreEditorPlugin.INSTANCE.log(exception)openErrorDialog(CommonUIPlugin.getPlugin().getString("_UI_CreateMarkerError_message"),exception)ARGUMENT_NUMBER_MISMATCH
    EcoreEditorPlugin.INSTANCEMISSING_METHOD_INVOCATION_EXPRESSION
    Preondition Violations
    Expression EcoreEditorPlugin.INSTANCE.log(exception) is a void method call, and thus it cannot be parameterized
    Expression openErrorDialog(CommonUIPlugin.getPlugin().getString("_UI_CreateMarkerError_message"),exception) is a void method call, and thus it cannot be parameterized
    Expression EcoreEditorPlugin.INSTANCE.log(exception) is a void method call, and thus it cannot be parameterized
    Expression openErrorDialog(CommonUIPlugin.getPlugin().getString("_UI_CreateMarkerError_message"),exception) is a void method call, and thus it cannot be parameterized
    4
    try
    3
    getEditorSite().getPage().showView("org.eclipse.ui.views.PropertySheet");
                                                                                                                                                            
                                                                                    
    5
    markerUtil.createMarkers(diagnostic);
    Preondition Violations
    Unmatched statement markerUtil.createMarkers(diagnostic); cannot be moved before or after the extracted code, because it throws exception(s) that should be caught by a try block that will be extracted
    5
    markerUtil.createMarkers(diagnostic);
    Precondition Violations (5)
    Row Violation
    1Expression EcoreEditorPlugin.INSTANCE.log(exception) is a void method call, and thus it cannot be parameterized
    2Expression openErrorDialog(CommonUIPlugin.getPlugin().getString("_UI_CreateMarkerError_message"),exception) is a void method call, and thus it cannot be parameterized
    3Expression EcoreEditorPlugin.INSTANCE.log(exception) is a void method call, and thus it cannot be parameterized
    4Expression openErrorDialog(CommonUIPlugin.getPlugin().getString("_UI_CreateMarkerError_message"),exception) is a void method call, and thus it cannot be parameterized
    5Unmatched statement markerUtil.createMarkers(diagnostic); cannot be moved before or after the extracted code, because it throws exception(s) that should be caught by a try block that will be extracted