Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
4 | 13 | 4 | 0.963 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 4 | 67 | plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/InlineConstantAction.java |
2 | 4 | 72 | plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/InlineMethodAction.java |
3 | 4 | 59 | plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/MoveInstanceMethodAction.java |
4 | 4 | 51 | plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/MoveStaticMembersAction.java |
5 | 4 | 75 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ConvertNestedToTopAction.java |
6 | 4 | 112 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ExternalizeStringsAction.java |
7 | 4 | 70 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ExtractInterfaceAction.java |
8 | 4 | 98 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindStringsToExternalizeAction.java |
9 | 4 | 72 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ModifyParametersAction.java |
10 | 4 | 71 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ReplaceInvocationsAction.java |
11 | 4 | 63 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/SelfEncapsulateFieldAction.java |
12 | 4 | 65 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ShowInNavigatorViewAction.java |
13 | 4 | 73 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/UseSupertypeAction.java |
| ||||
public InlineConstantAction(IWorkbenchSite site) { super(site); setText(RefactoringMessages.InlineConstantAction_inline_Constant); PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.INLINE_ACTION); } |
| ||||
public InlineMethodAction(IWorkbenchSite site) { super(site); setText(RefactoringMessages.InlineMethodAction_inline_Method); PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.INLINE_ACTION); } |
| ||||
public MoveInstanceMethodAction(IWorkbenchSite site) { super(site); setText(RefactoringMessages.MoveInstanceMethodAction_Move_Method); PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.MOVE_ACTION); } |
| ||||
public MoveStaticMembersAction(IWorkbenchSite site) { super(site); setText(RefactoringMessages.RefactoringGroup_move_label); PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.MOVE_ACTION); } |
| ||||
/** * Creates a new <code>MoveInnerToTopAction</code>. The action requires * that the selection provided by the site's selection provider is of type * <code> * org.eclipse.jface.viewers.IStructuredSelection</code>. * * @param site * the site providing context information for this action */ public ConvertNestedToTopAction(IWorkbenchSite site) { super(site); setText(RefactoringMessages.ConvertNestedToTopAction_Convert); PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.MOVE_INNER_TO_TOP_ACTION); } |
| ||||
/** * Creates a new <code>ExternalizeStringsAction</code>. The action requires * that the selection provided by the site's selection provider is of type <code> * org.eclipse.jface.viewers.IStructuredSelection</code>. * * @param site the site providing context information for this action */ public ExternalizeStringsAction(IWorkbenchSite site) { super(site); setText(ActionMessages.ExternalizeStringsAction_label); PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.EXTERNALIZE_STRINGS_ACTION); } |
| ||||
/** * Creates a new <code>ExtractInterfaceAction</code>. The action requires * that the selection provided by the site's selection provider is of type <code> * org.eclipse.jface.viewers.IStructuredSelection</code>. * * @param site the site providing context information for this action */ public ExtractInterfaceAction(IWorkbenchSite site) { super(site); setText(RefactoringMessages.ExtractInterfaceAction_Extract_Interface); PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.EXTRACT_INTERFACE_ACTION); } |
| ||||
/** * Creates a new <code>FindStringsToExternalizeAction</code>. The action * requires that the selection provided by the site's selection provider is of type * <code>org.eclipse.jface.viewers.IStructuredSelection</code>. * * @param site the site providing context information for this action */ public FindStringsToExternalizeAction(IWorkbenchSite site) { super(site); setText(ActionMessages.FindStringsToExternalizeAction_label); PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.FIND_STRINGS_TO_EXTERNALIZE_ACTION); } |
| ||||
/** * Creates a new <code>ModifyParametersAction</code>. The action requires * that the selection provided by the site's selection provider is of type <code> * org.eclipse.jface.viewers.IStructuredSelection</code>. * * @param site the site providing context information for this action */ public ModifyParametersAction(IWorkbenchSite site) { super(site); setText(RefactoringMessages.RefactoringGroup_modify_Parameters_label); PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.MODIFY_PARAMETERS_ACTION); } |
| ||||
/** * Creates a new <code>ReplaceInvocationsAction</code>. * * @param site the site providing context information for this action */ public ReplaceInvocationsAction(IWorkbenchSite site) { super(site); setText(RefactoringMessages.ReplaceInvocationsAction_label); PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.REPLACE_INVOCATIONS_ACTION); } |
| ||||
/** * Creates a new <code>SelfEncapsulateFieldAction</code>. The action requires * that the selection provided by the site's selection provider is of type <code> * org.eclipse.jface.viewers.IStructuredSelection</code>. * * @param site the site providing context information for this action */ public SelfEncapsulateFieldAction(IWorkbenchSite site) { super(site); setText(ActionMessages.SelfEncapsulateFieldAction_label); PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.SELF_ENCAPSULATE_ACTION); } |
| ||||
/** * Creates a new <code>ShowInNavigatorViewAction</code>. The action requires * that the selection provided by the site's selection provider is of type * <code>org.eclipse.jface.viewers.IStructuredSelection</code>. * * @param site the site providing context information for this action */ public ShowInNavigatorViewAction(IWorkbenchSite site) { super(site); setText(ActionMessages.ShowInNavigatorView_label); PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.SHOW_IN_NAVIGATOR_VIEW_ACTION); } |
| ||||
/** * Creates a new <code>UseSupertypeAction</code>. The action requires * that the selection provided by the site's selection provider is of type <code> * org.eclipse.jface.viewers.IStructuredSelection</code>. * * @param site the site providing context information for this action */ public UseSupertypeAction(IWorkbenchSite site) { super(site); setText(RefactoringMessages.UseSupertypeAction_use_Supertype); PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.USE_SUPERTYPE_ACTION); } |
| |||
/** * Creates a new <code>UseSupertypeAction</code>. The action requires * that the selection provided by the site's selection provider is of type <code> * org.eclipse.jface.viewers.IStructuredSelection</code>. * * @param site the site providing context information for this action */ /** * Creates a new <code>ShowInNavigatorViewAction</code>. The action requires * that the selection provided by the site's selection provider is of type * <code>org.eclipse.jface.viewers.IStructuredSelection</code>. * * @param site the site providing context information for this action */ /** * Creates a new <code>SelfEncapsulateFieldAction</code>. The action requires * that the selection provided by the site's selection provider is of type <code> * org.eclipse.jface.viewers.IStructuredSelection</code>. * * @param site the site providing context information for this action */ /** * Creates a new <code>ReplaceInvocationsAction</code>. * * @param site the site providing context information for this action */ /** * Creates a new <code>MoveInnerToTopAction</code>. The action requires * that the selection provided by the site's selection provider is of type * <code> * org.eclipse.jface.viewers.IStructuredSelection</code>. * * @param site * the site providing context information for this action */ /** * Creates a new <code>ExternalizeStringsAction</code>. The action requires * that the selection provided by the site's selection provider is of type <code> * org.eclipse.jface.viewers.IStructuredSelection</code>. * * @param site the site providing context information for this action */ /** * Creates a new <code>ModifyParametersAction</code>. The action requires * that the selection provided by the site's selection provider is of type <code> * org.eclipse.jface.viewers.IStructuredSelection</code>. * * @param site the site providing context information for this action */ /** * Creates a new <code>FindStringsToExternalizeAction</code>. The action * requires that the selection provided by the site's selection provider is of type * <code>org.eclipse.jface.viewers.IStructuredSelection</code>. * * @param site the site providing context information for this action */ /** * Creates a new <code>ExtractInterfaceAction</code>. The action requires * that the selection provided by the site's selection provider is of type <code> * org.eclipse.jface.viewers.IStructuredSelection</code>. * * @param site the site providing context information for this action */ public [[#variable76254120]](IWorkbenchSite site) { super(site); setText( [[#variable762540c0]]. [[#variable76254020]]); PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds. [[#variableba525d20]]); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#76254120]] | MoveStaticMembersAction |
1 | 2 | [[#76254120]] | MoveInstanceMethodAction |
1 | 3 | [[#76254120]] | InlineMethodAction |
1 | 4 | [[#76254120]] | InlineConstantAction |
1 | 5 | [[#76254120]] | UseSupertypeAction |
1 | 6 | [[#76254120]] | ShowInNavigatorViewAction |
1 | 7 | [[#76254120]] | SelfEncapsulateFieldAction |
1 | 8 | [[#76254120]] | ReplaceInvocationsAction |
1 | 9 | [[#76254120]] | ConvertNestedToTopAction |
1 | 10 | [[#76254120]] | ExternalizeStringsAction |
1 | 11 | [[#76254120]] | ModifyParametersAction |
1 | 12 | [[#76254120]] | FindStringsToExternalizeAction |
1 | 13 | [[#76254120]] | ExtractInterfaceAction |
2 | 1 | [[#762540c0]] | RefactoringMessages |
2 | 2 | [[#762540c0]] | RefactoringMessages |
2 | 3 | [[#762540c0]] | RefactoringMessages |
2 | 4 | [[#762540c0]] | RefactoringMessages |
2 | 5 | [[#762540c0]] | RefactoringMessages |
2 | 6 | [[#762540c0]] | ActionMessages |
2 | 7 | [[#762540c0]] | ActionMessages |
2 | 8 | [[#762540c0]] | RefactoringMessages |
2 | 9 | [[#762540c0]] | RefactoringMessages |
2 | 10 | [[#762540c0]] | ActionMessages |
2 | 11 | [[#762540c0]] | RefactoringMessages |
2 | 12 | [[#762540c0]] | ActionMessages |
2 | 13 | [[#762540c0]] | RefactoringMessages |
3 | 1 | [[#76254020]] | RefactoringGroup_move_label |
3 | 2 | [[#76254020]] | MoveInstanceMethodAction_Move_Method |
3 | 3 | [[#76254020]] | InlineMethodAction_inline_Method |
3 | 4 | [[#76254020]] | InlineConstantAction_inline_Constant |
3 | 5 | [[#76254020]] | UseSupertypeAction_use_Supertype |
3 | 6 | [[#76254020]] | ShowInNavigatorView_label |
3 | 7 | [[#76254020]] | SelfEncapsulateFieldAction_label |
3 | 8 | [[#76254020]] | ReplaceInvocationsAction_label |
3 | 9 | [[#76254020]] | ConvertNestedToTopAction_Convert |
3 | 10 | [[#76254020]] | ExternalizeStringsAction_label |
3 | 11 | [[#76254020]] | RefactoringGroup_modify_Parameters_label |
3 | 12 | [[#76254020]] | FindStringsToExternalizeAction_label |
3 | 13 | [[#76254020]] | ExtractInterfaceAction_Extract_Interface |
4 | 1 | [[#ba525d20]] | MOVE_ACTION |
4 | 2 | [[#ba525d20]] | MOVE_ACTION |
4 | 3 | [[#ba525d20]] | INLINE_ACTION |
4 | 4 | [[#ba525d20]] | INLINE_ACTION |
4 | 5 | [[#ba525d20]] | USE_SUPERTYPE_ACTION |
4 | 6 | [[#ba525d20]] | SHOW_IN_NAVIGATOR_VIEW_ACTION |
4 | 7 | [[#ba525d20]] | SELF_ENCAPSULATE_ACTION |
4 | 8 | [[#ba525d20]] | REPLACE_INVOCATIONS_ACTION |
4 | 9 | [[#ba525d20]] | MOVE_INNER_TO_TOP_ACTION |
4 | 10 | [[#ba525d20]] | EXTERNALIZE_STRINGS_ACTION |
4 | 11 | [[#ba525d20]] | MODIFY_PARAMETERS_ACTION |
4 | 12 | [[#ba525d20]] | FIND_STRINGS_TO_EXTERNALIZE_ACTION |
4 | 13 | [[#ba525d20]] | EXTRACT_INTERFACE_ACTION |