CloneSet2414


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5330.982switch_group
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1583
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/classfmt/AnnotationInfo.java
2588
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/classfmt/AnnotationInfo.java
3593
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/classfmt/AnnotationInfo.java
Clone Instance
1
Line Count
5
Source Line
83
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/classfmt/AnnotationInfo.java

                case 'C': // char constant
                        constValueOffset = this.constantPoolOffsets[u2At(this.readOffset)] - this.structOffset;
                        value = CharConstant.fromValue((char) i4At(constValueOffset + 1));
                        this.readOffset += 2;
                        break;


Clone Instance
2
Line Count
5
Source Line
88
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/classfmt/AnnotationInfo.java

                case 'B': // byte constant
                        constValueOffset = this.constantPoolOffsets[u2At(this.readOffset)] - this.structOffset;
                        value = ByteConstant.fromValue((byte) i4At(constValueOffset + 1));
                        this.readOffset += 2;
                        break;


Clone Instance
3
Line Count
5
Source Line
93
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/classfmt/AnnotationInfo.java

                case 'S': // short constant
                        constValueOffset = this.constantPoolOffsets[u2At(this.readOffset)] - this.structOffset;
                        value = ShortConstant.fromValue((short) i4At(constValueOffset + 1));
                        this.readOffset += 2;
                        break;


Clone AbstractionParameter Count: 3Parameter Bindings

case [[#variable95deb460]]: // char constant // byte constant // short constant
  constValueOffset = this.constantPoolOffsets[u2At(this.readOffset)] - this.structOffset;
  value = [[#variable95deb3c0]].fromValue(( [[#variable95deb360]]) i4At(constValueOffset + 1));
  this.readOffset += 2;
  break;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#95deb460]]
'C' 
12[[#95deb460]]
'B' 
13[[#95deb460]]
'S' 
21[[#95deb3c0]]
CharConstant 
22[[#95deb3c0]]
ByteConstant 
23[[#95deb3c0]]
ShortConstant 
31[[#95deb360]]
char 
32[[#95deb360]]
byte 
33[[#95deb360]]
short