Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
4 | 19 | 3 | 0.958 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 4 | 61 | plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/InlineConstantAction.java |
2 | 4 | 66 | plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/InlineMethodAction.java |
3 | 4 | 53 | plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/MoveInstanceMethodAction.java |
4 | 4 | 57 | plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/MoveStaticMembersAction.java |
5 | 4 | 57 | plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/RenameJavaElementAction.java |
6 | 4 | 95 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/OpenCallHierarchyAction.java |
7 | 4 | 60 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ConvertNestedToTopAction.java |
8 | 4 | 57 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ExtractInterfaceAction.java |
9 | 4 | 81 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindAction.java |
10 | 4 | 57 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/InferTypeArgumentsAction.java |
11 | 4 | 60 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/InlineTempAction.java |
12 | 4 | 59 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ModifyParametersAction.java |
13 | 4 | 106 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OpenExternalJavadocAction.java |
14 | 4 | 99 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OpenSuperImplementationAction.java |
15 | 4 | 107 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OpenTypeHierarchyAction.java |
16 | 4 | 74 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/SelfEncapsulateFieldAction.java |
17 | 4 | 75 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ShowInNavigatorViewAction.java |
18 | 4 | 62 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ShowInPackageViewAction.java |
19 | 4 | 60 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/UseSupertypeAction.java |
| ||||
/** * Note: This constructor is for internal use only. Clients should not call this constructor. */ public InlineConstantAction(CompilationUnitEditor editor) { this(editor.getEditorSite()); fEditor = editor; setEnabled(SelectionConverter.canOperateOn(fEditor)); } |
| ||||
/** * Note: This constructor is for internal use only. Clients should not call this constructor. * @param editor the compilation unit editor */ public InlineMethodAction(CompilationUnitEditor editor) { this(editor.getEditorSite()); fEditor = editor; setEnabled(SelectionConverter.canOperateOn(fEditor)); } |
| ||||
/** * Note: This constructor is for internal use only. Clients should not call this constructor. * @param editor the compilation unit editor */ public MoveInstanceMethodAction(CompilationUnitEditor editor) { this(editor.getEditorSite()); fEditor = editor; setEnabled(SelectionConverter.canOperateOn(fEditor)); } |
| ||||
public MoveStaticMembersAction(CompilationUnitEditor editor) { this(editor.getEditorSite()); fEditor = editor; setEnabled(SelectionConverter.canOperateOn(fEditor)); } |
| ||||
public RenameJavaElementAction(CompilationUnitEditor editor) { this(editor.getEditorSite()); fEditor = editor; setEnabled(SelectionConverter.canOperateOn(fEditor)); } |
| ||||
/** * Note: This constructor is for internal use only. Clients should not call this constructor. */ public OpenCallHierarchyAction(JavaEditor editor) { this(editor.getEditorSite()); fEditor = editor; setEnabled(SelectionConverter.canOperateOn(fEditor)); } |
| ||||
/** * Note: This constructor is for internal use only. Clients should not call * this constructor. * @param editor the compilation unit editor */ public ConvertNestedToTopAction(CompilationUnitEditor editor) { this(editor.getEditorSite()); fEditor = editor; setEnabled(SelectionConverter.canOperateOn(fEditor)); } |
| ||||
/** * Note: This constructor is for internal use only. Clients should not call this constructor. * @param editor the compilation unit editor */ public ExtractInterfaceAction(CompilationUnitEditor editor) { this(editor.getEditorSite()); fEditor = editor; setEnabled(SelectionConverter.canOperateOn(fEditor)); } |
| ||||
FindAction(JavaEditor editor) { this(editor.getEditorSite()); fEditor = editor; setEnabled(SelectionConverter.canOperateOn(fEditor)); } |
| ||||
/** * Note: This constructor is for internal use only. Clients should not call this constructor. * * @param editor the compilation unit editor */ public InferTypeArgumentsAction(CompilationUnitEditor editor) { this(editor.getEditorSite()); fEditor = editor; setEnabled(SelectionConverter.canOperateOn(fEditor)); } |
| ||||
/** * Note: This constructor is for internal use only. Clients should not call this constructor. * * @param editor the compilation unit editor */ public InlineTempAction(CompilationUnitEditor editor) { this(editor.getEditorSite()); fEditor = editor; setEnabled(SelectionConverter.canOperateOn(fEditor)); } |
| ||||
/** * Note: This constructor is for internal use only. Clients should not call this constructor. * @param editor the compilation unit editor */ public ModifyParametersAction(CompilationUnitEditor editor) { this(editor.getEditorSite()); fEditor = editor; setEnabled(SelectionConverter.canOperateOn(fEditor)); } |
| ||||
/** * Note: This constructor is for internal use only. Clients should not call this constructor. * @param editor the Java editor */ public OpenExternalJavadocAction(JavaEditor editor) { this(editor.getEditorSite()); fEditor = editor; setEnabled(SelectionConverter.canOperateOn(fEditor)); } |
| ||||
/** * Note: This constructor is for internal use only. Clients should not call this constructor. * @param editor the Java editor */ public OpenSuperImplementationAction(JavaEditor editor) { this(editor.getEditorSite()); fEditor = editor; setEnabled(SelectionConverter.canOperateOn(fEditor)); } |
| ||||
/** * Note: This constructor is for internal use only. Clients should not call this constructor. * @param editor the Java editor */ public OpenTypeHierarchyAction(JavaEditor editor) { this(editor.getEditorSite()); fEditor = editor; setEnabled(SelectionConverter.canOperateOn(fEditor)); } |
| ||||
/** * Note: This constructor is for internal use only. Clients should not call this constructor. * * @param editor the compilation unit editor */ public SelfEncapsulateFieldAction(CompilationUnitEditor editor) { this(editor.getEditorSite()); fEditor = editor; setEnabled(SelectionConverter.canOperateOn(fEditor)); } |
| ||||
/** * Note: This constructor is for internal use only. Clients should not call this constructor. * @param editor the Java editor */ public ShowInNavigatorViewAction(JavaEditor editor) { this(editor.getEditorSite()); fEditor = editor; setEnabled(SelectionConverter.canOperateOn(fEditor)); } |
| ||||
/** * Note: This constructor is for internal use only. Clients should not call this constructor. * @param editor the Java editor */ public ShowInPackageViewAction(JavaEditor editor) { this(editor.getEditorSite()); fEditor = editor; setEnabled(SelectionConverter.canOperateOn(fEditor)); } |
| ||||
/** * Note: This constructor is for internal use only. Clients should not call this constructor. * @param editor the compilation unit editor */ public UseSupertypeAction(CompilationUnitEditor editor) { this(editor.getEditorSite()); fEditor = editor; setEnabled(SelectionConverter.canOperateOn(fEditor)); } |
| |||
[[#variablebe7c08c0]] [[#variablebe7c01a0]]( [[#variablebe7c03e0]] editor) { this(editor.getEditorSite()); fEditor = editor; setEnabled(SelectionConverter.canOperateOn(fEditor)); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#be7c08c0]] | /** * Note: This constructor is for internal use only. Clients should not call this constructor. */ public |
1 | 2 | [[#be7c08c0]] | /** * Note: This constructor is for internal use only. Clients should not call * this constructor. * @param editor the compilation unit editor */ public |
1 | 3 | [[#be7c08c0]] | /** * Note: This constructor is for internal use only. Clients should not call this constructor. * @param editor the compilation unit editor */ public |
1 | 4 | [[#be7c08c0]] | |
1 | 5 | [[#be7c08c0]] | /** * Note: This constructor is for internal use only. Clients should not call this constructor. * * @param editor the compilation unit editor */ public |
1 | 6 | [[#be7c08c0]] | /** * Note: This constructor is for internal use only. Clients should not call this constructor. * * @param editor the compilation unit editor */ public |
1 | 7 | [[#be7c08c0]] | /** * Note: This constructor is for internal use only. Clients should not call this constructor. * @param editor the compilation unit editor */ public |
1 | 8 | [[#be7c08c0]] | /** * Note: This constructor is for internal use only. Clients should not call this constructor. * @param editor the Java editor */ public |
1 | 9 | [[#be7c08c0]] | /** * Note: This constructor is for internal use only. Clients should not call this constructor. * @param editor the Java editor */ public |
1 | 10 | [[#be7c08c0]] | /** * Note: This constructor is for internal use only. Clients should not call this constructor. * @param editor the Java editor */ public |
1 | 11 | [[#be7c08c0]] | public |
1 | 12 | [[#be7c08c0]] | public |
1 | 13 | [[#be7c08c0]] | /** * Note: This constructor is for internal use only. Clients should not call this constructor. * * @param editor the compilation unit editor */ public |
1 | 14 | [[#be7c08c0]] | /** * Note: This constructor is for internal use only. Clients should not call this constructor. * @param editor the Java editor */ public |
1 | 15 | [[#be7c08c0]] | /** * Note: This constructor is for internal use only. Clients should not call this constructor. * @param editor the Java editor */ public |
1 | 16 | [[#be7c08c0]] | /** * Note: This constructor is for internal use only. Clients should not call this constructor. * @param editor the compilation unit editor */ public |
1 | 17 | [[#be7c08c0]] | /** * Note: This constructor is for internal use only. Clients should not call this constructor. */ public |
1 | 18 | [[#be7c08c0]] | /** * Note: This constructor is for internal use only. Clients should not call this constructor. * @param editor the compilation unit editor */ public |
1 | 19 | [[#be7c08c0]] | /** * Note: This constructor is for internal use only. Clients should not call this constructor. * @param editor the compilation unit editor */ public |
2 | 1 | [[#be7c01a0]] | OpenCallHierarchyAction |
2 | 2 | [[#be7c01a0]] | ConvertNestedToTopAction |
2 | 3 | [[#be7c01a0]] | ExtractInterfaceAction |
2 | 4 | [[#be7c01a0]] | FindAction |
2 | 5 | [[#be7c01a0]] | InferTypeArgumentsAction |
2 | 6 | [[#be7c01a0]] | InlineTempAction |
2 | 7 | [[#be7c01a0]] | ModifyParametersAction |
2 | 8 | [[#be7c01a0]] | OpenExternalJavadocAction |
2 | 9 | [[#be7c01a0]] | OpenSuperImplementationAction |
2 | 10 | [[#be7c01a0]] | OpenTypeHierarchyAction |
2 | 11 | [[#be7c01a0]] | RenameJavaElementAction |
2 | 12 | [[#be7c01a0]] | MoveStaticMembersAction |
2 | 13 | [[#be7c01a0]] | SelfEncapsulateFieldAction |
2 | 14 | [[#be7c01a0]] | ShowInNavigatorViewAction |
2 | 15 | [[#be7c01a0]] | ShowInPackageViewAction |
2 | 16 | [[#be7c01a0]] | UseSupertypeAction |
2 | 17 | [[#be7c01a0]] | InlineConstantAction |
2 | 18 | [[#be7c01a0]] | InlineMethodAction |
2 | 19 | [[#be7c01a0]] | MoveInstanceMethodAction |
3 | 1 | [[#be7c03e0]] | JavaEditor |
3 | 2 | [[#be7c03e0]] | CompilationUnitEditor |
3 | 3 | [[#be7c03e0]] | CompilationUnitEditor |
3 | 4 | [[#be7c03e0]] | JavaEditor |
3 | 5 | [[#be7c03e0]] | CompilationUnitEditor |
3 | 6 | [[#be7c03e0]] | CompilationUnitEditor |
3 | 7 | [[#be7c03e0]] | CompilationUnitEditor |
3 | 8 | [[#be7c03e0]] | JavaEditor |
3 | 9 | [[#be7c03e0]] | JavaEditor |
3 | 10 | [[#be7c03e0]] | JavaEditor |
3 | 11 | [[#be7c03e0]] | CompilationUnitEditor |
3 | 12 | [[#be7c03e0]] | CompilationUnitEditor |
3 | 13 | [[#be7c03e0]] | CompilationUnitEditor |
3 | 14 | [[#be7c03e0]] | JavaEditor |
3 | 15 | [[#be7c03e0]] | JavaEditor |
3 | 16 | [[#be7c03e0]] | CompilationUnitEditor |
3 | 17 | [[#be7c03e0]] | CompilationUnitEditor |
3 | 18 | [[#be7c03e0]] | CompilationUnitEditor |
3 | 19 | [[#be7c03e0]] | CompilationUnitEditor |