CloneSet890


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
8301.000statement_sequence[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
18901
plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/jres/InstalledJREsBlock.java
28448
plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/jres/JREsComboBlock.java
38429
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/JavaProjectWizardFirstPage.java
Clone Instance
1
Line Count
8
Source Line
901
Source File
plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/jres/InstalledJREsBlock.java

                // fill with JREs
                List standins = new ArrayList();
                IVMInstallType[] types = JavaRuntime.getVMInstallTypes();
                for (int i = 0; i < types.length; i++) {
                        IVMInstallType type = types[i];
                        IVMInstall[] installs = type.getVMInstalls();
                        for (int j = 0; j < installs.length; j++) {
                                IVMInstall install = installs[j];
                                standins.add(new VMStandin(install));
                        }
                }


Clone Instance
2
Line Count
8
Source Line
448
Source File
plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/jres/JREsComboBlock.java

                // fill with JREs
                List standins = new ArrayList();
                IVMInstallType[] types = JavaRuntime.getVMInstallTypes();
                for (int i = 0; i < types.length; i++) {
                        IVMInstallType type = types[i];
                        IVMInstall[] installs = type.getVMInstalls();
                        for (int j = 0; j < installs.length; j++) {
                                IVMInstall install = installs[j];
                                standins.add(new VMStandin(install));
                        }
                }


Clone Instance
3
Line Count
8
Source Line
429
Source File
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/JavaProjectWizardFirstPage.java

                        List standins = new ArrayList();
                        IVMInstallType[] types = JavaRuntime.getVMInstallTypes();
                        for (int i = 0; i < types.length; i++) {
                                IVMInstallType type = types[i];
                                IVMInstall[] installs = type.getVMInstalls();
                                for (int j = 0; j < installs.length; j++) {
                                        IVMInstall install = installs[j];
                                        standins.add(new VMStandin(install));
                                }
                        }


Clone AbstractionParameter Count: 0Parameter Bindings

// fill with JREs
List standins = new ArrayList();
IVMInstallType[] types = JavaRuntime.getVMInstallTypes();
for (int i = 0; i < types.length; i++) {
  IVMInstallType type = types[i];
  IVMInstall[] installs = type.getVMInstalls();
  for (int j = 0; j < installs.length; j++) {
    IVMInstall install = installs[j];
    standins.add(new VMStandin(install));
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None