CloneSet5804


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
8201.000switch_groups[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
116534
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/JavadocParser.java
28510
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/DocCommentParser.java
Clone Instance
1
Line Count
16
Source Line
534
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/JavadocParser.java

                        case TerminalTokens.TokenNamereturn:
                                this.tagValue = TAG_RETURN_VALUE;
                                valid = parseReturn();
                                /* verify characters after return tag (we're expecting text description)
                                if(!verifyCharsAfterReturnTag(this.index)) {
                                        if (this.sourceParser != null) {
                                                int end = this.starPosition == -1 || this.lineEnd<this.starPosition ? this.lineEnd : this.starPosition;
                                                this.sourceParser.problemReporter().javadocEmptyReturnTag(this.tagSourceStart, end);
                                        }
                                }
                                */
                                break;
                        case TerminalTokens.TokenNamethrows:
                                this.tagValue = TAG_THROWS_VALUE;
                                valid = parseThrows();
                                break;


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

                        case TerminalTokens.TokenNamereturn:
                                this.tagValue = TAG_RETURN_VALUE;
                                valid = parseReturn();
                                break;
                        case TerminalTokens.TokenNamethrows:
                                this.tagValue = TAG_THROWS_VALUE;
                                valid = parseThrows();
                                break;


Clone AbstractionParameter Count: 0Parameter Bindings

case TerminalTokens.TokenNamereturn:
  this.tagValue = TAG_RETURN_VALUE;
  valid = parseReturn();
  /* verify characters after return tag (we're expecting text description)
                                  if(!verifyCharsAfterReturnTag(this.index)) {
                                          if (this.sourceParser != null) {
                                                  int end = this.starPosition == -1 || this.lineEnd<this.starPosition ? this.lineEnd : this.starPosition;
                                                  this.sourceParser.problemReporter().javadocEmptyReturnTag(this.tagSourceStart, end);
                                          }
                                  }
                                  */
  break;
case TerminalTokens.TokenNamethrows:
  this.tagValue = TAG_THROWS_VALUE;
  valid = parseThrows();
  break;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None