CloneSet2089


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
10230.978statement_sequence[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11054
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/complete/CompletionOnJavadocTag.java
21067
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/complete/CompletionOnJavadocTag.java
Clone Instance
1
Line Count
10
Source Line
54
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/complete/CompletionOnJavadocTag.java

                // Print block tags
                char[][] blockTags = this.possibleTags[BLOCK_IDX];
                if (blockTags != null) {
                        int length = blockTags.length;
                        if (length > 0) {
                                output.append("\npossible block tags:"); //$NON-NLS-1$
                                for (int i = 0; i < length; i++) {
                                        output.append("\n\t- ");      //$NON-NLS-1$
                                        output.append(blockTags[i]);
                                }
                                output.append('\n');
                        }
                }


Clone Instance
2
Line Count
10
Source Line
67
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/complete/CompletionOnJavadocTag.java

                // Print inline tags
                char[][] inlineTags = this.possibleTags[INLINE_IDX];
                if (inlineTags != null) {
                        int length = inlineTags.length;
                        if (length > 0) {
                                output.append("\npossible inline tags:"); //$NON-NLS-1$
                                for (int i = 0; i < length; i++) {
                                        output.append("\n\t- ");      //$NON-NLS-1$
                                        output.append(inlineTags[i]);
                                }
                                output.append('\n');
                        }
                }


Clone AbstractionParameter Count: 3Parameter Bindings

// Print inline tags
// Print block tags
char[][]  [[#variable51f51d00]]= this.possibleTags[ [[#variable95767460]]];
if ( [[#variable51f51d00]]!= null) {
  int length = [[#variable51f51d00]].length;
  if (length > 0) {
    output.append( [[#variable51f51cc0]]); //$NON-NLS-1$
    for (int i = 0; i < length; i++) {
      output.append("\n\t- "); //$NON-NLS-1$
      output.append( [[#variable51f51d00]][i]);
    }
    output.append('\n');
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#51f51d00]]
inlineTags 
12[[#51f51d00]]
blockTags 
21[[#95767460]]
INLINE_IDX 
22[[#95767460]]
BLOCK_IDX 
31[[#51f51cc0]]
"\npossible inline tags:" 
32[[#51f51cc0]]
"\npossible block tags:"