CloneSet555


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6430.978statement_sequence_member
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1699
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/complete/CompletionJavadoc.java
26108
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/complete/CompletionJavadoc.java
36121
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/complete/CompletionJavadoc.java
46130
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/complete/CompletionJavadoc.java
Clone Instance
1
Line Count
6
Source Line
99
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/complete/CompletionJavadoc.java

                if (this.paramReferences != null) {
                        for (int i = 0, length = this.paramReferences.length; i < length; i++) {
                                printIndent(indent, output).append(" * @param "); //$NON-NLS-1$         
                                this.paramReferences[i].print(indent, output).append('\n');
                                if ( !nodePrinted && this.completionNode != null) {
                                        nodePrinted =  this.completionNode == this.paramReferences[i];
                                }
                        }
                }


Clone Instance
2
Line Count
6
Source Line
108
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/complete/CompletionJavadoc.java

                if (this.paramTypeParameters != null) {
                        for (int i = 0, length = this.paramTypeParameters.length; i < length; i++) {
                                printIndent(indent, output).append(" * @param <"); //$NON-NLS-1$                
                                this.paramTypeParameters[i].print(indent, output).append(">\n"); //$NON-NLS-1$
                                if ( !nodePrinted && this.completionNode != null) {
                                        nodePrinted =  this.completionNode == this.paramTypeParameters[i];
                                }
                        }
                }


Clone Instance
3
Line Count
6
Source Line
121
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/complete/CompletionJavadoc.java

                if (this.exceptionReferences != null) {
                        for (int i = 0, length = this.exceptionReferences.length; i < length; i++) {
                                printIndent(indent, output).append(" * @throws "); //$NON-NLS-1$                
                                this.exceptionReferences[i].print(indent, output).append('\n');
                                if ( !nodePrinted && this.completionNode != null) {
                                        nodePrinted =  this.completionNode == this.exceptionReferences[i];
                                }
                        }
                }


Clone Instance
4
Line Count
6
Source Line
130
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/complete/CompletionJavadoc.java

                if (this.seeReferences != null) {
                        for (int i = 0, length = this.seeReferences.length; i < length; i++) {
                                printIndent(indent, output).append(" * @see "); //$NON-NLS-1$           
                                this.seeReferences[i].print(indent, output).append('\n');
                                if ( !nodePrinted && this.completionNode != null) {
                                        nodePrinted =  this.completionNode == this.seeReferences[i];
                                }
                        }
                }


Clone AbstractionParameter Count: 3Parameter Bindings

if (this. [[#variablea42bc500]]!= null) {
  for (int i = 0, length = this. [[#variablea42bc500]].length; i < length; i++) {
    printIndent(indent, output).append( [[#variablea42bc440]]); //$NON-NLS-1$           
    this. [[#variablea42bc500]][i].print(indent, output).append( [[#variablea42bc360]]); //$NON-NLS-1$
    if ( !nodePrinted && this.completionNode != null) {
      nodePrinted = this.completionNode == this. [[#variablea42bc500]][i];
    }
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#a42bc500]]
paramReferences 
12[[#a42bc500]]
paramTypeParameters 
13[[#a42bc500]]
exceptionReferences 
14[[#a42bc500]]
seeReferences 
21[[#a42bc440]]
" * @param " 
22[[#a42bc440]]
" * @param <" 
23[[#a42bc440]]
" * @throws " 
24[[#a42bc440]]
" * @see " 
31[[#a42bc360]]
'\n' 
32[[#a42bc360]]
">\n" 
33[[#a42bc360]]
'\n' 
34[[#a42bc360]]
'\n'