Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
8 | 3 | 4 | 0.966 | class_body_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 8 | 292 | plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/FieldBinding.java |
2 | 8 | 500 | plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/MethodBinding.java |
3 | 8 | 38 | plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/VariableBinding.java |
| ||||
/* Answer true if the receiver has private visibility and is used locally */ public final boolean isUsed() { return (modifiers& ExtraCompilerModifiers.AccLocallyUsed) != 0; } /* Answer true if the receiver has protected visibility */ public final boolean isProtected() { return (modifiers& ClassFileConstants.AccProtected) != 0; } |
| ||||
/* Answer true if the receiver is a system generated default abstract method */ public final boolean isDefaultAbstract() { return (modifiers& ExtraCompilerModifiers.AccDefaultAbstract) != 0; } /* Answer true if the receiver is a deprecated method */ public final boolean isDeprecated() { return (modifiers& ClassFileConstants.AccDeprecated) != 0; } |
| ||||
public final boolean isBlankFinal() { return (modifiers& ExtraCompilerModifiers.AccBlankFinal) != 0; } /* Answer true if the receiver is final and cannot be changed */ public final boolean isFinal() { return (modifiers& ClassFileConstants.AccFinal) != 0; } |
| |||
/* Answer true if the receiver has private visibility and is used locally */ /* Answer true if the receiver is a system generated default abstract method */ public final boolean [[#variablea0596620]]() { return (modifiers&ExtraCompilerModifiers. [[#variablea05965e0]]) != 0; } /* Answer true if the receiver has protected visibility */ /* Answer true if the receiver is final and cannot be changed */ /* Answer true if the receiver is a deprecated method */ public final boolean [[#variablea1523f20]]() { return (modifiers&ClassFileConstants. [[#variablea0596580]]) != 0; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#a0596620]] | isUsed |
1 | 2 | [[#a0596620]] | isBlankFinal |
1 | 3 | [[#a0596620]] | isDefaultAbstract |
2 | 1 | [[#a05965e0]] | AccLocallyUsed |
2 | 2 | [[#a05965e0]] | AccBlankFinal |
2 | 3 | [[#a05965e0]] | AccDefaultAbstract |
3 | 1 | [[#a1523f20]] | isProtected |
3 | 2 | [[#a1523f20]] | isFinal |
3 | 3 | [[#a1523f20]] | isDeprecated |
4 | 1 | [[#a0596580]] | AccProtected |
4 | 2 | [[#a0596580]] | AccFinal |
4 | 3 | [[#a0596580]] | AccDeprecated |