CloneSet463


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
41340.963class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1467
plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/InlineConstantAction.java
2472
plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/InlineMethodAction.java
3459
plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/MoveInstanceMethodAction.java
4451
plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/MoveStaticMembersAction.java
5475
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ConvertNestedToTopAction.java
64112
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ExternalizeStringsAction.java
7470
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ExtractInterfaceAction.java
8498
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindStringsToExternalizeAction.java
9472
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ModifyParametersAction.java
10471
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ReplaceInvocationsAction.java
11463
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/SelfEncapsulateFieldAction.java
12465
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ShowInNavigatorViewAction.java
13473
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/UseSupertypeAction.java
Clone Instance
1
Line Count
4
Source Line
67
Source File
plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/InlineConstantAction.java

        public InlineConstantAction(IWorkbenchSite site) {
                super(site);
                setText(RefactoringMessages.InlineConstantAction_inline_Constant);
                PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.INLINE_ACTION);
        }


Clone Instance
2
Line Count
4
Source Line
72
Source File
plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/InlineMethodAction.java

        public InlineMethodAction(IWorkbenchSite site) {
                super(site);
                setText(RefactoringMessages.InlineMethodAction_inline_Method);
                PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.INLINE_ACTION);
        }


Clone Instance
3
Line Count
4
Source Line
59
Source File
plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/MoveInstanceMethodAction.java

        public MoveInstanceMethodAction(IWorkbenchSite site) {
                super(site);
                setText(RefactoringMessages.MoveInstanceMethodAction_Move_Method);
                PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.MOVE_ACTION);
        }


Clone Instance
4
Line Count
4
Source Line
51
Source File
plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/MoveStaticMembersAction.java

        public MoveStaticMembersAction(IWorkbenchSite site) {
                super(site);
                setText(RefactoringMessages.RefactoringGroup_move_label);
                PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.MOVE_ACTION);
        }


Clone Instance
5
Line Count
4
Source Line
75
Source File
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ConvertNestedToTopAction.java

        /**
         * 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);
        }


Clone Instance
6
Line Count
4
Source Line
112
Source File
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ExternalizeStringsAction.java

        /**
         * 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);
        }


Clone Instance
7
Line Count
4
Source Line
70
Source File
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ExtractInterfaceAction.java

        /**
         * 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);
        }


Clone Instance
8
Line Count
4
Source Line
98
Source File
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindStringsToExternalizeAction.java

        /**
         * 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);
        }


Clone Instance
9
Line Count
4
Source Line
72
Source File
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ModifyParametersAction.java

        /**
         * 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);
        }


Clone Instance
10
Line Count
4
Source Line
71
Source File
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ReplaceInvocationsAction.java

        /**
         * 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);
        }


Clone Instance
11
Line Count
4
Source Line
63
Source File
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/SelfEncapsulateFieldAction.java

        /**
         * 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);
        }


Clone Instance
12
Line Count
4
Source Line
65
Source File
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ShowInNavigatorViewAction.java

        /**
         * 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);
        }


Clone Instance
13
Line Count
4
Source Line
73
Source File
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/UseSupertypeAction.java

        /**
         * 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);
        }


Clone AbstractionParameter Count: 4Parameter Bindings

/**
         * 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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#76254120]]
MoveStaticMembersAction 
12[[#76254120]]
MoveInstanceMethodAction 
13[[#76254120]]
InlineMethodAction 
14[[#76254120]]
InlineConstantAction 
15[[#76254120]]
UseSupertypeAction 
16[[#76254120]]
ShowInNavigatorViewAction 
17[[#76254120]]
SelfEncapsulateFieldAction 
18[[#76254120]]
ReplaceInvocationsAction 
19[[#76254120]]
ConvertNestedToTopAction 
110[[#76254120]]
ExternalizeStringsAction 
111[[#76254120]]
ModifyParametersAction 
112[[#76254120]]
FindStringsToExternalizeAction 
113[[#76254120]]
ExtractInterfaceAction 
21[[#762540c0]]
RefactoringMessages 
22[[#762540c0]]
RefactoringMessages 
23[[#762540c0]]
RefactoringMessages 
24[[#762540c0]]
RefactoringMessages 
25[[#762540c0]]
RefactoringMessages 
26[[#762540c0]]
ActionMessages 
27[[#762540c0]]
ActionMessages 
28[[#762540c0]]
RefactoringMessages 
29[[#762540c0]]
RefactoringMessages 
210[[#762540c0]]
ActionMessages 
211[[#762540c0]]
RefactoringMessages 
212[[#762540c0]]
ActionMessages 
213[[#762540c0]]
RefactoringMessages 
31[[#76254020]]
RefactoringGroup_move_label 
32[[#76254020]]
MoveInstanceMethodAction_Move_Method 
33[[#76254020]]
InlineMethodAction_inline_Method 
34[[#76254020]]
InlineConstantAction_inline_Constant 
35[[#76254020]]
UseSupertypeAction_use_Supertype 
36[[#76254020]]
ShowInNavigatorView_label 
37[[#76254020]]
SelfEncapsulateFieldAction_label 
38[[#76254020]]
ReplaceInvocationsAction_label 
39[[#76254020]]
ConvertNestedToTopAction_Convert 
310[[#76254020]]
ExternalizeStringsAction_label 
311[[#76254020]]
RefactoringGroup_modify_Parameters_label 
312[[#76254020]]
FindStringsToExternalizeAction_label 
313[[#76254020]]
ExtractInterfaceAction_Extract_Interface 
41[[#ba525d20]]
MOVE_ACTION 
42[[#ba525d20]]
MOVE_ACTION 
43[[#ba525d20]]
INLINE_ACTION 
44[[#ba525d20]]
INLINE_ACTION 
45[[#ba525d20]]
USE_SUPERTYPE_ACTION 
46[[#ba525d20]]
SHOW_IN_NAVIGATOR_VIEW_ACTION 
47[[#ba525d20]]
SELF_ENCAPSULATE_ACTION 
48[[#ba525d20]]
REPLACE_INVOCATIONS_ACTION 
49[[#ba525d20]]
MOVE_INNER_TO_TOP_ACTION 
410[[#ba525d20]]
EXTERNALIZE_STRINGS_ACTION 
411[[#ba525d20]]
MODIFY_PARAMETERS_ACTION 
412[[#ba525d20]]
FIND_STRINGS_TO_EXTERNALIZE_ACTION 
413[[#ba525d20]]
EXTRACT_INTERFACE_ACTION