CloneSet7414


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
12220.959class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1426
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/BranchStatement.java
21241
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/FieldDeclaration.java
Clone Instance
1
Line Count
4
Source Line
26
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/BranchStatement.java

/**
 * BranchStatement constructor comment.
 */
public BranchStatement(char[] label, int sourceStart, int sourceEnd) {
        this.label = label;
        this.sourceStart = sourceStart;
        this.sourceEnd = sourceEnd;
}


Clone Instance
2
Line Count
12
Source Line
41
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/FieldDeclaration.java

        public FieldDeclaration(
                char[] name,
                int sourceStart,
                int sourceEnd  ) {

                this.name = name;

                //due to some declaration like 
                // int x, y = 3, z , x ;
                //the sourceStart and the sourceEnd is ONLY on  the name
                this.sourceStart = sourceStart;
                this.sourceEnd = sourceEnd;
        }


Clone AbstractionParameter Count: 2Parameter Bindings

/**
 * BranchStatement constructor comment.
 */
public [[#variable5858c760]](char[]  [[#variable5858c700]], int sourceStart, int sourceEnd) {
  this. [[#variable5858c700]]= [[#variable5858c700]];
  //due to some declaration like 
  // int x, y = 3, z , x ;
  //the sourceStart and the sourceEnd is ONLY on  the name
  this.sourceStart = sourceStart;
  this.sourceEnd = sourceEnd;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#5858c760]]
FieldDeclaration 
12[[#5858c760]]
BranchStatement 
21[[#5858c700]]
name 
22[[#5858c700]]
label