CloneSet6978


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5220.972statement_sequence_member
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
15614
plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/actions/ValidBreakpointLocationLocator.java
25809
plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/actions/ValidBreakpointLocationLocator.java
Clone Instance
1
Line Count
5
Source Line
614
Source File
plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/actions/ValidBreakpointLocationLocator.java

                                        // check if the breakpoint is to be set on the line which contains the name of the field
                                        if (fCompilationUnit.lineNumber(offset) == fLineNumber) {
                                                fMemberOffset = offset;
                                                fLocationType = LOCATION_FIELD;
                                                fLocationFound = true;
                                                return false;
                                        }


Clone Instance
2
Line Count
5
Source Line
809
Source File
plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/actions/ValidBreakpointLocationLocator.java

                                if (fCompilationUnit.lineNumber(nameOffset) == fLineNumber) {
                                        fMemberOffset = nameOffset;
                                        fLocationType = LOCATION_METHOD;
                                        fLocationFound = true;
                                        return false;
                                }


Clone AbstractionParameter Count: 2Parameter Bindings

// check if the breakpoint is to be set on the line which contains the name of the field
if (fCompilationUnit.lineNumber( [[#variable54ccc660]]) == fLineNumber) {
  fMemberOffset = [[#variable54ccc660]];
  fLocationType = [[#variable54ccc5c0]];
  fLocationFound = true;
  return false;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#54ccc660]]
offset 
12[[#54ccc660]]
nameOffset 
21[[#54ccc5c0]]
LOCATION_FIELD 
22[[#54ccc5c0]]
LOCATION_METHOD