CloneSet4469


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6240.955statement_sequence_member
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16262
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/ArrayReferenceImpl.java
26333
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/ObjectReferenceImpl.java
Clone Instance
1
Line Count
6
Source Line
262
Source File
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/ArrayReferenceImpl.java

                        while (iterValues.hasNext()) {
                                ValueImpl value = (ValueImpl) iterValues.next();
                                if (value != null) {
                                        value.write(this, outData);
                                }
                                else   {
                                        ValueImpl.writeNull(this, outData);
                                }
                        }


Clone Instance
2
Line Count
6
Source Line
333
Source File
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/ObjectReferenceImpl.java

                        while (iter.hasNext()) {
                                ValueImpl elt = (ValueImpl) iter.next();
                                if (elt != null) {
                                        elt.writeWithTag(this, outData);
                                }
                                else   {
                                        ValueImpl.writeNullWithTag(this, outData);
                                }
                        }


Clone AbstractionParameter Count: 4Parameter Bindings

while ( [[#variable506b43a0]].hasNext()) {
  ValueImpl  [[#variable506b42e0]]= (ValueImpl)  [[#variable506b43a0]].next();
  if ( [[#variable506b42e0]]!= null) {
     [[#variable506b42e0]]. [[#variable506b4260]](this, outData);
  }
  else {
    ValueImpl. [[#variable506b41e0]](this, outData);
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#506b43a0]]
iter 
12[[#506b43a0]]
iterValues 
21[[#506b42e0]]
elt 
22[[#506b42e0]]
value 
31[[#506b4260]]
writeWithTag 
32[[#506b4260]]
write 
41[[#506b41e0]]
writeNullWithTag 
42[[#506b41e0]]
writeNull