CloneSet1184


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
11210.997class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
111279
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/ParameterizedQualifiedTypeReference.java
211292
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/ParameterizedQualifiedTypeReference.java
Clone Instance
1
Line Count
11
Source Line
279
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/ParameterizedQualifiedTypeReference.java

        public void traverse(ASTVisitor visitor, BlockScope scope) {
                if (visitor.visit(this, scope)) {
                        for (int i = 0, max = this.typeArguments.length; i < max; i++) {
                                if (this.typeArguments[i] != null) {
                                        for (int j = 0, max2 = this.typeArguments[i].length; j < max2; j++) {
                                                this.typeArguments[i][j].traverse(visitor, scope);
                                        }
                                }
                        }
                }
                visitor.endVisit(this, scope);
        }


Clone Instance
2
Line Count
11
Source Line
292
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/ParameterizedQualifiedTypeReference.java

        public void traverse(ASTVisitor visitor, ClassScope scope) {
                if (visitor.visit(this, scope)) {
                        for (int i = 0, max = this.typeArguments.length; i < max; i++) {
                                if (this.typeArguments[i] != null) {
                                        for (int j = 0, max2 = this.typeArguments[i].length; j < max2; j++) {
                                                this.typeArguments[i][j].traverse(visitor, scope);
                                        }
                                }
                        }
                }
                visitor.endVisit(this, scope);
        }


Clone AbstractionParameter Count: 1Parameter Bindings

public void traverse(ASTVisitor visitor, [[#variable9eea2220]] scope) {
  if (visitor.visit(this, scope)) {
    for (int i = 0, max = this.typeArguments.length; i < max; i++) {
      if (this.typeArguments[i] != null) {
        for (int j = 0, max2 = this.typeArguments[i].length; j < max2; j++) {
          this.typeArguments[i][j].traverse(visitor, scope);
        }
      }
    }
  }
  visitor.endVisit(this, scope);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#9eea2220]]
BlockScope 
12[[#9eea2220]]
ClassScope