CloneSet1546


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
16210.977statement_sequence[8]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
116139
plugins/org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/StandardVMDebugger.java
216204
plugins/org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/StandardVMRunner.java
Clone Instance
1
Line Count
16
Source Line
139
Source File
plugins/org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/StandardVMDebugger.java

                String program = constructProgramString(config);

                List arguments = new ArrayList(12);

                arguments.add(program);

                // VM args are the first thing after the java program so that users can specify
                // options like '-client' & '-server' which are required to be the first options
                String[] allVMArgs = combineVmArgs(config, fVMInstance);
                addArguments(allVMArgs, arguments);
                addBootClassPathArguments(arguments, config);

                String[] cp = config.getClassPath();
                if (cp.length > 0) {
                        arguments.add("-classpath"); //$NON-NLS-1$
                        arguments.add(convertClassPath(cp));
                }


Clone Instance
2
Line Count
16
Source Line
204
Source File
plugins/org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/StandardVMRunner.java

                String program = constructProgramString(config);

                List arguments = new ArrayList();
                arguments.add(program);

                // VM args are the first thing after the java program so that users can specify
                // options like '-client' & '-server' which are required to be the first option
                String[] allVMArgs = combineVmArgs(config, fVMInstance);
                addArguments(allVMArgs, arguments);

                addBootClassPathArguments(arguments, config);

                String[] cp = config.getClassPath();
                if (cp.length > 0) {
                        arguments.add("-classpath"); //$NON-NLS-1$
                        arguments.add(convertClassPath(cp));
                }


Clone AbstractionParameter Count: 1Parameter Bindings

String program = constructProgramString(config);
List arguments = new ArrayList [[#variable9dc95a20]];
arguments.add(program);
// VM args are the first thing after the java program so that users can specify
// options like '-client' & '-server' which are required to be the first option
// options like '-client' & '-server' which are required to be the first options
String[] allVMArgs = combineVmArgs(config, fVMInstance);
addArguments(allVMArgs, arguments);
addBootClassPathArguments(arguments, config);
String[] cp = config.getClassPath();
if (cp.length > 0) {
  arguments.add("-classpath"); //$NON-NLS-1$
  arguments.add(convertClassPath(cp));
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#9dc95a20]]
() 
12[[#9dc95a20]]
(12)