CloneSet4531


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
9250.968switch_group
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
19440
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/DocCommentParser.java
29449
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/DocCommentParser.java
Clone Instance
1
Line Count
9
Source Line
440
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/DocCommentParser.java

                                        case 'p':
                                                if (length == TAG_PARAM_LENGTH && CharOperation.equals(TAG_PARAM, tagName)) {
                                                        this.tagValue = TAG_PARAM_VALUE;
                                                        valid = parseParam();
                                                }
                                                else   {
                                                        this.tagValue = TAG_OTHERS_VALUE;
                                                        createTag();
                                                }
                                        break;


Clone Instance
2
Line Count
9
Source Line
449
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/DocCommentParser.java

                                        case 'e':
                                                if (length == TAG_EXCEPTION_LENGTH && CharOperation.equals(TAG_EXCEPTION, tagName)) {
                                                        this.tagValue = TAG_EXCEPTION_VALUE;
                                                        valid = parseThrows();
                                                }
                                                else   {
                                                        this.tagValue = TAG_OTHERS_VALUE;
                                                        createTag();
                                                }
                                        break;


Clone AbstractionParameter Count: 5Parameter Bindings

case [[#variable94dbeee0]]:
  if (length == [[#variable94dbee20]]&& CharOperation.equals( [[#variable94dbeda0]], tagName)) {
    this.tagValue = [[#variable94dbed40]];
    valid = [[#variable94dbec60]]();
  }
  else {
    this.tagValue = TAG_OTHERS_VALUE;
    createTag();
  }
  break;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#94dbeee0]]
'p' 
12[[#94dbeee0]]
'e' 
21[[#94dbee20]]
TAG_PARAM_LENGTH 
22[[#94dbee20]]
TAG_EXCEPTION_LENGTH 
31[[#94dbeda0]]
TAG_PARAM 
32[[#94dbeda0]]
TAG_EXCEPTION 
41[[#94dbed40]]
TAG_PARAM_VALUE 
42[[#94dbed40]]
TAG_EXCEPTION_VALUE 
51[[#94dbec60]]
parseParam 
52[[#94dbec60]]
parseThrows