CloneSet2963


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5430.953class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
15965
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/SelectionEngine.java
25971
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/SelectionEngine.java
35995
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/SelectionEngine.java
451001
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/SelectionEngine.java
Clone Instance
1
Line Count
5
Source Line
965
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/SelectionEngine.java

                        public boolean visit(TypeDeclaration localTypeDeclaration, BlockScope scope) {
                                if (localTypeDeclaration.name == assistIdentifier) {
                                        throw new SelectionNodeFound(localTypeDeclaration.binding);
                                }
                                return true;
                        }


Clone Instance
2
Line Count
5
Source Line
971
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/SelectionEngine.java

                        public boolean visit(TypeDeclaration memberTypeDeclaration, ClassScope scope) {
                                if (memberTypeDeclaration.name == assistIdentifier) {
                                        throw new SelectionNodeFound(memberTypeDeclaration.binding);
                                }
                                return true;
                        }


Clone Instance
3
Line Count
5
Source Line
995
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/SelectionEngine.java

                        public boolean visit(TypeParameter typeParameter, BlockScope scope) {
                                if (typeParameter.name == assistIdentifier) {
                                        throw new SelectionNodeFound(typeParameter.binding);
                                }
                                return true;
                        }


Clone Instance
4
Line Count
5
Source Line
1001
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/SelectionEngine.java

                        public boolean visit(TypeParameter typeParameter, ClassScope scope) {
                                if (typeParameter.name == assistIdentifier) {
                                        throw new SelectionNodeFound(typeParameter.binding);
                                }
                                return true;
                        }


Clone AbstractionParameter Count: 3Parameter Bindings

public boolean visit( [[#variableba631f40]]  [[#variableba630940]], [[#variableba631fc0]] scope) {
  if ( [[#variableba630940]].name == assistIdentifier) {
    throw new SelectionNodeFound( [[#variableba630940]].binding);
  }
  return true;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#ba631f40]]
TypeParameter 
12[[#ba631f40]]
TypeDeclaration 
13[[#ba631f40]]
TypeDeclaration 
14[[#ba631f40]]
TypeParameter 
21[[#ba630940]]
typeParameter 
22[[#ba630940]]
localTypeDeclaration 
23[[#ba630940]]
memberTypeDeclaration 
24[[#ba630940]]
typeParameter 
31[[#ba631fc0]]
ClassScope 
32[[#ba631fc0]]
BlockScope 
33[[#ba631fc0]]
ClassScope 
34[[#ba631fc0]]
BlockScope