CloneSet5225


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
4201.000statement_sequence[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
14113
plugins/org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/JavaElementTransfer.java
24107
plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/TypedSourceTransfer.java
Clone Instance
1
Line Count
4
Source Line
113
Source File
plugins/org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/JavaElementTransfer.java

                /*
                 * The element serialization format is:
                 *  (int) number of element
                 * Then, the following for each element:
                 *  (String) handle identifier
                 */
                byte[] bytes = (byte[]) super.nativeToJava(transferData);
                if (bytes == null)
                        return null;
                DataInputStream in = new DataInputStream(new ByteArrayInputStream(bytes));


Clone Instance
2
Line Count
4
Source Line
107
Source File
plugins/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/TypedSourceTransfer.java

                byte[] bytes = (byte[]) super.nativeToJava(transferData);
                if (bytes == null)
                        return null;
                DataInputStream in = new DataInputStream(new ByteArrayInputStream(bytes));


Clone AbstractionParameter Count: 0Parameter Bindings

/*
                 * The element serialization format is:
                 *  (int) number of element
                 * Then, the following for each element:
                 *  (String) handle identifier
                 */
byte[] bytes = (byte[]) super.nativeToJava(transferData);
if (bytes == null)
  return null;
DataInputStream in = new DataInputStream(new ByteArrayInputStream(bytes));
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None