CloneSet198


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
42430.968statement_sequence[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1450
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/Annotation.java
2438
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/AnnotationComponent.java
3485
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/AnnotationComponentValue.java
4495
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/AnnotationComponentValue.java
5432
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/ClassFileAttribute.java
6439
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/EnclosingMethodAttribute.java
7446
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/EnclosingMethodAttribute.java
8452
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/EnclosingMethodAttribute.java
9457
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/EnclosingMethodAttribute.java
10440
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/ExceptionTableEntry.java
11453
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/FieldInfo.java
12460
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/FieldInfo.java
13443
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/InnerClassesAttributeEntry.java
14450
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/InnerClassesAttributeEntry.java
15457
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/InnerClassesAttributeEntry.java
16450
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/LocalVariableTableEntry.java
17455
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/LocalVariableTableEntry.java
18450
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/LocalVariableTypeTableEntry.java
19455
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/LocalVariableTypeTableEntry.java
20460
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/MethodInfo.java
21467
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/MethodInfo.java
22432
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/SignatureAttribute.java
23444
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/SourceFileAttribute.java
24440
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/VerificationInfo.java
Clone Instance
1
Line Count
4
Source Line
50
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/Annotation.java

                        if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Utf8) {
                                throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                        }
                        this.typeName = constantPoolEntry.getUtf8Value();


Clone Instance
2
Line Count
4
Source Line
38
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/AnnotationComponent.java

                        if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Utf8) {
                                throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                        }
                        this.componentName = constantPoolEntry.getUtf8Value();


Clone Instance
3
Line Count
4
Source Line
85
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/AnnotationComponentValue.java

                                        if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Utf8) {
                                                throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                                        }
                                        this.enumConstantTypeName = constantPoolEntry.getUtf8Value();


Clone Instance
4
Line Count
4
Source Line
95
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/AnnotationComponentValue.java

                                        if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Utf8) {
                                                throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                                        }
                                        this.enumConstantName = constantPoolEntry.getUtf8Value();


Clone Instance
5
Line Count
4
Source Line
32
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/ClassFileAttribute.java

                if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Utf8) {
                        throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                }
                this.attributeName = constantPoolEntry.getUtf8Value();


Clone Instance
6
Line Count
4
Source Line
39
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/EnclosingMethodAttribute.java

                if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Class) {
                        throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                }
                this.enclosingClassName = constantPoolEntry.getClassInfoName();


Clone Instance
7
Line Count
4
Source Line
46
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/EnclosingMethodAttribute.java

                        if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_NameAndType) {
                                throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                        }
                        this.methodDescriptorIndex = constantPoolEntry.getNameAndTypeInfoDescriptorIndex();


Clone Instance
8
Line Count
4
Source Line
52
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/EnclosingMethodAttribute.java

                        if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Utf8) {
                                throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                        }
                        this.methodDescriptor = constantPoolEntry.getUtf8Value();


Clone Instance
9
Line Count
4
Source Line
57
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/EnclosingMethodAttribute.java

                        if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Utf8) {
                                throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                        }
                        this.methodName = constantPoolEntry.getUtf8Value();


Clone Instance
10
Line Count
4
Source Line
40
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/ExceptionTableEntry.java

                        if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Class) {
                                throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                        }
                        this.catchType = constantPoolEntry.getClassInfoName();


Clone Instance
11
Line Count
4
Source Line
53
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/FieldInfo.java

                if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Utf8) {
                        throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                }
                this.name = constantPoolEntry.getUtf8Value();


Clone Instance
12
Line Count
4
Source Line
60
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/FieldInfo.java

                if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Utf8) {
                        throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                }
                this.descriptor = constantPoolEntry.getUtf8Value();


Clone Instance
13
Line Count
4
Source Line
43
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/InnerClassesAttributeEntry.java

                        if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Class) {
                                throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                        }
                        this.innerClassName = constantPoolEntry.getClassInfoName();


Clone Instance
14
Line Count
4
Source Line
50
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/InnerClassesAttributeEntry.java

                        if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Class) {
                                throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                        }
                        this.outerClassName = constantPoolEntry.getClassInfoName();


Clone Instance
15
Line Count
4
Source Line
57
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/InnerClassesAttributeEntry.java

                        if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Utf8) {
                                throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                        }
                        this.innerName = constantPoolEntry.getUtf8Value();


Clone Instance
16
Line Count
4
Source Line
50
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/LocalVariableTableEntry.java

                        if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Utf8) {
                                throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                        }
                        this.name = constantPoolEntry.getUtf8Value();


Clone Instance
17
Line Count
4
Source Line
55
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/LocalVariableTableEntry.java

                        if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Utf8) {
                                throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                        }
                        this.descriptor = constantPoolEntry.getUtf8Value();


Clone Instance
18
Line Count
4
Source Line
50
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/LocalVariableTypeTableEntry.java

                        if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Utf8) {
                                throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                        }
                        this.name = constantPoolEntry.getUtf8Value();


Clone Instance
19
Line Count
4
Source Line
55
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/LocalVariableTypeTableEntry.java

                        if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Utf8) {
                                throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                        }
                        this.signature = constantPoolEntry.getUtf8Value();


Clone Instance
20
Line Count
4
Source Line
60
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/MethodInfo.java

                if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Utf8) {
                        throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                }
                this.name = constantPoolEntry.getUtf8Value();


Clone Instance
21
Line Count
4
Source Line
67
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/MethodInfo.java

                if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Utf8) {
                        throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                }
                this.descriptor = constantPoolEntry.getUtf8Value();


Clone Instance
22
Line Count
4
Source Line
32
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/SignatureAttribute.java

                if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Utf8) {
                        throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                }
                this.signature = constantPoolEntry.getUtf8Value();


Clone Instance
23
Line Count
4
Source Line
44
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/SourceFileAttribute.java

                if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Utf8) {
                        throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                }
                this.sourceFileName = constantPoolEntry.getUtf8Value();


Clone Instance
24
Line Count
4
Source Line
40
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/VerificationInfo.java

                                        if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Class) {
                                                throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
                                        }
                                        this.classTypeName = constantPoolEntry.getClassInfoName();


Clone AbstractionParameter Count: 3Parameter Bindings

if (constantPoolEntry.getKind() != IConstantPoolConstant. [[#variablec1607200]]) {
  throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
}
this. [[#variablec1607160]]= constantPoolEntry. [[#variablec16070e0]]();
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#c1607200]]
CONSTANT_Utf8 
12[[#c1607200]]
CONSTANT_Utf8 
13[[#c1607200]]
CONSTANT_Utf8 
14[[#c1607200]]
CONSTANT_Utf8 
15[[#c1607200]]
CONSTANT_Utf8 
16[[#c1607200]]
CONSTANT_Utf8 
17[[#c1607200]]
CONSTANT_Utf8 
18[[#c1607200]]
CONSTANT_Utf8 
19[[#c1607200]]
CONSTANT_Utf8 
110[[#c1607200]]
CONSTANT_Utf8 
111[[#c1607200]]
CONSTANT_Class 
112[[#c1607200]]
CONSTANT_Class 
113[[#c1607200]]
CONSTANT_Utf8 
114[[#c1607200]]
CONSTANT_Class 
115[[#c1607200]]
CONSTANT_Class 
116[[#c1607200]]
CONSTANT_NameAndType 
117[[#c1607200]]
CONSTANT_Utf8 
118[[#c1607200]]
CONSTANT_Class 
119[[#c1607200]]
CONSTANT_Utf8 
120[[#c1607200]]
CONSTANT_Utf8 
121[[#c1607200]]
CONSTANT_Utf8 
122[[#c1607200]]
CONSTANT_Utf8 
123[[#c1607200]]
CONSTANT_Utf8 
124[[#c1607200]]
CONSTANT_Utf8 
21[[#c1607160]]
typeName 
22[[#c1607160]]
descriptor 
23[[#c1607160]]
name 
24[[#c1607160]]
signature 
25[[#c1607160]]
enumConstantName 
26[[#c1607160]]
enumConstantTypeName 
27[[#c1607160]]
attributeName 
28[[#c1607160]]
componentName 
29[[#c1607160]]
methodName 
210[[#c1607160]]
methodDescriptor 
211[[#c1607160]]
enclosingClassName 
212[[#c1607160]]
catchType 
213[[#c1607160]]
innerName 
214[[#c1607160]]
outerClassName 
215[[#c1607160]]
innerClassName 
216[[#c1607160]]
methodDescriptorIndex 
217[[#c1607160]]
sourceFileName 
218[[#c1607160]]
classTypeName 
219[[#c1607160]]
name 
220[[#c1607160]]
descriptor 
221[[#c1607160]]
name 
222[[#c1607160]]
signature 
223[[#c1607160]]
descriptor 
224[[#c1607160]]
name 
31[[#c16070e0]]
getUtf8Value 
32[[#c16070e0]]
getUtf8Value 
33[[#c16070e0]]
getUtf8Value 
34[[#c16070e0]]
getUtf8Value 
35[[#c16070e0]]
getUtf8Value 
36[[#c16070e0]]
getUtf8Value 
37[[#c16070e0]]
getUtf8Value 
38[[#c16070e0]]
getUtf8Value 
39[[#c16070e0]]
getUtf8Value 
310[[#c16070e0]]
getUtf8Value 
311[[#c16070e0]]
getClassInfoName 
312[[#c16070e0]]
getClassInfoName 
313[[#c16070e0]]
getUtf8Value 
314[[#c16070e0]]
getClassInfoName 
315[[#c16070e0]]
getClassInfoName 
316[[#c16070e0]]
getNameAndTypeInfoDescriptorIndex 
317[[#c16070e0]]
getUtf8Value 
318[[#c16070e0]]
getClassInfoName 
319[[#c16070e0]]
getUtf8Value 
320[[#c16070e0]]
getUtf8Value 
321[[#c16070e0]]
getUtf8Value 
322[[#c16070e0]]
getUtf8Value 
323[[#c16070e0]]
getUtf8Value 
324[[#c16070e0]]
getUtf8Value