CloneSet3890


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
8340.966class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
18292
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/FieldBinding.java
28500
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/MethodBinding.java
3838
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/VariableBinding.java
Clone Instance
1
Line Count
8
Source Line
292
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/FieldBinding.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;
}


Clone Instance
2
Line Count
8
Source Line
500
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/MethodBinding.java

/* 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;
}


Clone Instance
3
Line Count
8
Source Line
38
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/VariableBinding.java

        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;
        }


Clone AbstractionParameter Count: 4Parameter Bindings

/* 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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#a0596620]]
isUsed 
12[[#a0596620]]
isBlankFinal 
13[[#a0596620]]
isDefaultAbstract 
21[[#a05965e0]]
AccLocallyUsed 
22[[#a05965e0]]
AccBlankFinal 
23[[#a05965e0]]
AccDefaultAbstract 
31[[#a1523f20]]
isProtected 
32[[#a1523f20]]
isFinal 
33[[#a1523f20]]
isDeprecated 
41[[#a0596580]]
AccProtected 
42[[#a0596580]]
AccFinal 
43[[#a0596580]]
AccDeprecated