Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
8 | 4 | 2 | 0.968 | statement_sequence |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 8 | 472 | plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/ASTNode.java |
2 | 8 | 481 | plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/ASTNode.java |
3 | 8 | 490 | plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/ASTNode.java |
4 | 8 | 499 | plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/ASTNode.java |
| ||||
ReferenceBinding type = (ReferenceBinding) recipient; if ((type.tagBits& TagBits.AnnotationResolved) != 0) return; type.tagBits |= TagBits.AnnotationResolved; if (length > 0) { instances = new AnnotationBinding[length]; type.setAnnotations(instances); } break; |
| ||||
MethodBinding method = (MethodBinding) recipient; if ((method.tagBits& TagBits.AnnotationResolved) != 0) return; method.tagBits |= TagBits.AnnotationResolved; if (length > 0) { instances = new AnnotationBinding[length]; method.setAnnotations(instances); } break; |
| ||||
FieldBinding field = (FieldBinding) recipient; if ((field.tagBits& TagBits.AnnotationResolved) != 0) return; field.tagBits |= TagBits.AnnotationResolved; if (length > 0) { instances = new AnnotationBinding[length]; field.setAnnotations(instances); } break; |
| ||||
LocalVariableBinding local = (LocalVariableBinding) recipient; if ((local.tagBits& TagBits.AnnotationResolved) != 0) return; local.tagBits |= TagBits.AnnotationResolved; if (length > 0) { instances = new AnnotationBinding[length]; local.setAnnotations(instances); } break; |
| |||
[[#variable9dc84de0]] [[#variable97a82cc0]]= ( [[#variable9dc84de0]]) recipient; if (( [[#variable97a82cc0]].tagBits&TagBits.AnnotationResolved) != 0) return; [[#variable97a82cc0]].tagBits |= TagBits.AnnotationResolved; if (length > 0) { instances = new AnnotationBinding[length]; [[#variable97a82cc0]].setAnnotations(instances); } break; |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#9dc84de0]] | LocalVariableBinding |
1 | 2 | [[#9dc84de0]] | FieldBinding |
1 | 3 | [[#9dc84de0]] | MethodBinding |
1 | 4 | [[#9dc84de0]] | ReferenceBinding |
2 | 1 | [[#97a82cc0]] | local |
2 | 2 | [[#97a82cc0]] | field |
2 | 3 | [[#97a82cc0]] | method |
2 | 4 | [[#97a82cc0]] | type |