| Previous CloneSet | Next CloneSet | Back to Main Report |
| Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
|---|---|---|---|---|
| 24 | 6 | 6 | 0.955 | compilation_unit |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 19 | 11 | plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/RenameJavaProjectWizard.java |
| 2 | 19 | 11 | plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/RenameLocalVariableWizard.java |
| 3 | 19 | 11 | plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/RenameMethodWizard.java |
| 4 | 19 | 11 | plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/RenameResourceWizard.java |
| 5 | 19 | 11 | plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/RenameSourceFolderWizard.java |
| 6 | 24 | 11 | plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/RenameTypeParameterWizard.java |
| ||||
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.ui.refactoring.reorg;
import org.eclipse.jdt.internal.ui.IJavaHelpContextIds;
import org.eclipse.jdt.internal.ui.JavaPluginImages;
import org.eclipse.jdt.internal.ui.refactoring.RefactoringMessages;
import org.eclipse.ltk.core.refactoring.Refactoring;
public class RenameJavaProjectWizard extends RenameRefactoringWizard {
public RenameJavaProjectWizard(Refactoring refactoring) {
super(refactoring,
RefactoringMessages.RenameJavaProject_defaultPageTitle,
RefactoringMessages.RenameJavaProject_inputPage_description,
JavaPluginImages.DESC_WIZBAN_REFACTOR,
IJavaHelpContextIds.RENAME_JAVA_PROJECT_WIZARD_PAGE);
}
}
|
| ||||
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.ui.refactoring.reorg;
import org.eclipse.jdt.internal.ui.IJavaHelpContextIds;
import org.eclipse.jdt.internal.ui.JavaPluginImages;
import org.eclipse.jdt.internal.ui.refactoring.RefactoringMessages;
import org.eclipse.ltk.core.refactoring.Refactoring;
public final class RenameLocalVariableWizard extends RenameRefactoringWizard {
public RenameLocalVariableWizard(Refactoring refactoring) {
super(
refactoring,
RefactoringMessages.RenameLocalVariableWizard_defaultPageTitle,
RefactoringMessages.RenameTypeParameterWizard_inputPage_description,
JavaPluginImages.DESC_WIZBAN_REFACTOR, IJavaHelpContextIds.RENAME_LOCAL_VARIABLE_WIZARD_PAGE);
}
}
|
| ||||
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.ui.refactoring.reorg;
import org.eclipse.jdt.internal.ui.IJavaHelpContextIds;
import org.eclipse.jdt.internal.ui.JavaPluginImages;
import org.eclipse.jdt.internal.ui.refactoring.RefactoringMessages;
import org.eclipse.ltk.core.refactoring.Refactoring;
public class RenameMethodWizard extends RenameRefactoringWizard {
public RenameMethodWizard(Refactoring refactoring) {
super(refactoring,
RefactoringMessages.RenameMethodWizard_defaultPageTitle,
RefactoringMessages.RenameMethodWizard_inputPage_description,
JavaPluginImages.DESC_WIZBAN_REFACTOR_METHOD,
IJavaHelpContextIds.RENAME_METHOD_WIZARD_PAGE);
}
}
|
| ||||
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.ui.refactoring.reorg;
import org.eclipse.jdt.internal.ui.IJavaHelpContextIds;
import org.eclipse.jdt.internal.ui.JavaPluginImages;
import org.eclipse.jdt.internal.ui.refactoring.RefactoringMessages;
import org.eclipse.ltk.core.refactoring.Refactoring;
public class RenameResourceWizard extends RenameRefactoringWizard {
public RenameResourceWizard(Refactoring refactoring) {
super(refactoring,
RefactoringMessages.RenameResourceWizard_defaultPageTitle,
RefactoringMessages.RenameResourceWizard_inputPage_description,
JavaPluginImages.DESC_WIZBAN_REFACTOR,
IJavaHelpContextIds.RENAME_RESOURCE_WIZARD_PAGE);
}
}
|
| ||||
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.ui.refactoring.reorg;
import org.eclipse.jdt.internal.ui.IJavaHelpContextIds;
import org.eclipse.jdt.internal.ui.JavaPluginImages;
import org.eclipse.jdt.internal.ui.refactoring.RefactoringMessages;
import org.eclipse.ltk.core.refactoring.Refactoring;
public class RenameSourceFolderWizard extends RenameRefactoringWizard {
public RenameSourceFolderWizard(Refactoring refactoring) {
super(refactoring,
RefactoringMessages.RenameSourceFolder_defaultPageTitle,
RefactoringMessages.RenameSourceFolder_inputPage_description,
JavaPluginImages.DESC_WIZBAN_REFACTOR,
IJavaHelpContextIds.RENAME_SOURCE_FOLDER_WIZARD_PAGE);
}
}
|
| ||||
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.ui.refactoring.reorg;
import org.eclipse.jdt.internal.ui.IJavaHelpContextIds;
import org.eclipse.jdt.internal.ui.JavaPluginImages;
import org.eclipse.jdt.internal.ui.refactoring.RefactoringMessages;
import org.eclipse.ltk.core.refactoring.Refactoring;
/**
* Wizard for the rename type parameter refactoring.
*/
public final class RenameTypeParameterWizard extends RenameRefactoringWizard {
/**
* Creates a new rename type parameter wizard.
*
* @param refactoring
* the refactoring to create the wizard for
*/
public RenameTypeParameterWizard(Refactoring refactoring) {
super(refactoring, RefactoringMessages.RenameTypeParameterWizard_defaultPageTitle, RefactoringMessages.RenameTypeParameterWizard_inputPage_description, JavaPluginImages.DESC_WIZBAN_REFACTOR, IJavaHelpContextIds.RENAME_TYPE_PARAMETER_WIZARD_PAGE);
}
}
|
| |||
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.ui.refactoring.reorg;
import org.eclipse.jdt.internal.ui.IJavaHelpContextIds;
import org.eclipse.jdt.internal.ui.JavaPluginImages;
import org.eclipse.jdt.internal.ui.refactoring.RefactoringMessages;
import org.eclipse.ltk.core.refactoring.Refactoring;
[[#variable561636e0]]class [[#variable56163680]]extends RenameRefactoringWizard {
/**
* Creates a new rename type parameter wizard.
*
* @param refactoring
* the refactoring to create the wizard for
*/
public [[#variable56163680]](Refactoring refactoring) {
super(refactoring, RefactoringMessages. [[#variable561635e0]], RefactoringMessages. [[#variable56163540]], JavaPluginImages. [[#variable561634c0]], IJavaHelpContextIds. [[#variable56163440]]);
}
}
|
| CloneAbstraction |
| Parameter Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#561636e0]] | /** * Wizard for the rename type parameter refactoring. */ public final |
| 1 | 2 | [[#561636e0]] | public |
| 1 | 3 | [[#561636e0]] | public |
| 1 | 4 | [[#561636e0]] | public |
| 1 | 5 | [[#561636e0]] | public final |
| 1 | 6 | [[#561636e0]] | public |
| 2 | 1 | [[#56163680]] | RenameTypeParameterWizard |
| 2 | 2 | [[#56163680]] | RenameSourceFolderWizard |
| 2 | 3 | [[#56163680]] | RenameResourceWizard |
| 2 | 4 | [[#56163680]] | RenameMethodWizard |
| 2 | 5 | [[#56163680]] | RenameLocalVariableWizard |
| 2 | 6 | [[#56163680]] | RenameJavaProjectWizard |
| 3 | 1 | [[#561635e0]] | RenameTypeParameterWizard_defaultPageTitle |
| 3 | 2 | [[#561635e0]] | RenameSourceFolder_defaultPageTitle |
| 3 | 3 | [[#561635e0]] | RenameResourceWizard_defaultPageTitle |
| 3 | 4 | [[#561635e0]] | RenameMethodWizard_defaultPageTitle |
| 3 | 5 | [[#561635e0]] | RenameLocalVariableWizard_defaultPageTitle |
| 3 | 6 | [[#561635e0]] | RenameJavaProject_defaultPageTitle |
| 4 | 1 | [[#56163540]] | RenameTypeParameterWizard_inputPage_description |
| 4 | 2 | [[#56163540]] | RenameSourceFolder_inputPage_description |
| 4 | 3 | [[#56163540]] | RenameResourceWizard_inputPage_description |
| 4 | 4 | [[#56163540]] | RenameMethodWizard_inputPage_description |
| 4 | 5 | [[#56163540]] | RenameTypeParameterWizard_inputPage_description |
| 4 | 6 | [[#56163540]] | RenameJavaProject_inputPage_description |
| 5 | 1 | [[#561634c0]] | DESC_WIZBAN_REFACTOR |
| 5 | 2 | [[#561634c0]] | DESC_WIZBAN_REFACTOR |
| 5 | 3 | [[#561634c0]] | DESC_WIZBAN_REFACTOR |
| 5 | 4 | [[#561634c0]] | DESC_WIZBAN_REFACTOR_METHOD |
| 5 | 5 | [[#561634c0]] | DESC_WIZBAN_REFACTOR |
| 5 | 6 | [[#561634c0]] | DESC_WIZBAN_REFACTOR |
| 6 | 1 | [[#56163440]] | RENAME_TYPE_PARAMETER_WIZARD_PAGE |
| 6 | 2 | [[#56163440]] | RENAME_SOURCE_FOLDER_WIZARD_PAGE |
| 6 | 3 | [[#56163440]] | RENAME_RESOURCE_WIZARD_PAGE |
| 6 | 4 | [[#56163440]] | RENAME_METHOD_WIZARD_PAGE |
| 6 | 5 | [[#56163440]] | RENAME_LOCAL_VARIABLE_WIZARD_PAGE |
| 6 | 6 | [[#56163440]] | RENAME_JAVA_PROJECT_WIZARD_PAGE |