CloneSet2313


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6420.984class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16968
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeBinding.java
261040
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeBinding.java
361141
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeBinding.java
461152
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeBinding.java
Clone Instance
1
Line Count
6
Source Line
968
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeBinding.java

        /*
         * @see ITypeBinding#isAnonymous()
         */
        public boolean isAnonymous() {
                if (isClass() || isInterface() || isEnum()) {
                        ReferenceBinding referenceBinding = (ReferenceBinding) this.binding;
                        return referenceBinding.isAnonymousType();
                }
                return false;
        }


Clone Instance
2
Line Count
6
Source Line
1040
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeBinding.java

        /*
         * @see IBinding#isDeprecated()
         */
        public boolean isDeprecated() {
                if (isClass() || isInterface() || isEnum()) {
                        ReferenceBinding referenceBinding = (ReferenceBinding) this.binding;
                        return referenceBinding.isDeprecated();
                }
                return false;
        }


Clone Instance
3
Line Count
6
Source Line
1141
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeBinding.java

        /*
         * @see ITypeBinding#isMember()
         */
        public boolean isMember() {
                if (isClass() || isInterface() || isEnum()) {
                        ReferenceBinding referenceBinding = (ReferenceBinding) this.binding;
                        return referenceBinding.isMemberType();
                }
                return false;
        }


Clone Instance
4
Line Count
6
Source Line
1152
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeBinding.java

        /*
         * @see ITypeBinding#isNested()
         */
        public boolean isNested() {
                if (isClass() || isInterface() || isEnum()) {
                        ReferenceBinding referenceBinding = (ReferenceBinding) this.binding;
                        return referenceBinding.isNestedType();
                }
                return false;
        }


Clone AbstractionParameter Count: 2Parameter Bindings

/*
         * @see ITypeBinding#isAnonymous()
         */
/*
         * @see IBinding#isDeprecated()
         */
/*
         * @see ITypeBinding#isMember()
         */
/*
         * @see ITypeBinding#isNested()
         */
public boolean  [[#variable59ef2480]]() {
  if (isClass() || isInterface() || isEnum()) {
    ReferenceBinding referenceBinding = (ReferenceBinding) this.binding;
    return referenceBinding. [[#variable59ef2420]]();
  }
  return false;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#59ef2480]]
isAnonymous 
12[[#59ef2480]]
isDeprecated 
13[[#59ef2480]]
isMember 
14[[#59ef2480]]
isNested 
21[[#59ef2420]]
isAnonymousType 
22[[#59ef2420]]
isDeprecated 
23[[#59ef2420]]
isMemberType 
24[[#59ef2420]]
isNestedType