CloneSet3948


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
7220.983statement_sequence[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
17184
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration.java
27482
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/TypeDeclaration.java
Clone Instance
1
Line Count
7
Source Line
184
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration.java

                for (int i = 0; i < this.types.length; i++) {
                        TypeDeclaration typeDecl = this.types[i].declarationOfType(typeName);
                        if (typeDecl != null) {
                                return typeDecl;
                        }
                }
                return null;


Clone Instance
2
Line Count
7
Source Line
482
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/TypeDeclaration.java

        for (int i = 0; i < this.memberTypes.length; i++) {
                TypeDeclaration typeDecl = this.memberTypes[i].declarationOfType(subTypeName);
                if (typeDecl != null) {
                        return typeDecl;
                }
        }
        return null;


Clone AbstractionParameter Count: 2Parameter Bindings

for (int i = 0; i < this. [[#variable547cc920]].length; i++) {
  TypeDeclaration typeDecl = this. [[#variable547cc920]][i].declarationOfType( [[#variable54502aa0]]);
  if (typeDecl != null) {
    return typeDecl;
  }
}
return null;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#547cc920]]
types 
12[[#547cc920]]
memberTypes 
21[[#54502aa0]]
typeName 
22[[#54502aa0]]
subTypeName