CloneSet212


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
11210.973statement_sequence[5]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11168
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/dispatch/DispatchUtils.java
2999
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/dispatch/DispatchUtils.java
Next
Last
Clone Instance
1
Line Count
11
Source Line
68
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/dispatch/DispatchUtils.java

Method executeM = null;
executeM = dispatchable.getClass().getMethod(methodName, new Class[0]);
if (executeM == null) {
  throw new BuildException("No public " + methodName + "() in " + dispatchable.getClass());
}
executeM.invoke(dispatchable, (Object[]) null);
if (task instanceof UnknownElement) {
  ((UnknownElement) task).setRealThing(null);
}


First
Previous
Clone Instance
2
Line Count
9
Source Line
99
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/dispatch/DispatchUtils.java

Method executeM = null;
executeM = task.getClass().getMethod(methodName, new Class[0]);
if (executeM == null) {
  throw new BuildException("No public " + methodName + "() in " + task.getClass());
}
executeM.invoke(task, (Object[]) null);
if (task instanceof UnknownElement) {
  ((UnknownElement) task).setRealThing(null);
}


Clone AbstractionParameter Count: 1Parameter Bindings

Method executeM = null;
executeM = [[#variable10109040]].getClass().getMethod(methodName, new Class[0]);
if (executeM == null) {
  throw new BuildException("No public " + methodName + "() in " +  [[#variable10109040]].getClass());
}
executeM.invoke( [[#variable10109040]], (Object[]) null);
if (task instanceof UnknownElement) {
  ((UnknownElement) task).setRealThing(null);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#10109040]]
dispatchable 
12[[#10109040]]
task