Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
6 | 2 | 2 | 0.986 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 6 | 363 | plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/JavaMethodBreakpoint.java |
2 | 6 | 424 | plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/JavaWatchpoint.java |
| ||||
/** * @see IJavaMethodBreakpoint#isEntrySuspend(IDebugTarget) */ public boolean isEntrySuspend(IDebugTarget target) { Integer lastEventType = (Integer) fLastEventTypes.get(target); if (lastEventType == null) { return false; } return lastEventType.equals(ENTRY_EVENT); } |
| ||||
/** * @see IJavaWatchpoint#isAccessSuspend(IDebugTarget) */ public boolean isAccessSuspend(IDebugTarget target) { Integer lastEventType = (Integer) fLastEventTypes.get(target); if (lastEventType == null) { return false; } return lastEventType.equals(ACCESS_EVENT); } |
| |||
/** * @see IJavaWatchpoint#isAccessSuspend(IDebugTarget) */ /** * @see IJavaMethodBreakpoint#isEntrySuspend(IDebugTarget) */ public boolean [[#variablea1631b40]](IDebugTarget target) { Integer lastEventType = (Integer) fLastEventTypes.get(target); if (lastEventType == null) { return false; } return lastEventType.equals( [[#variablea1631ac0]]); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#a1631b40]] | isAccessSuspend |
1 | 2 | [[#a1631b40]] | isEntrySuspend |
2 | 1 | [[#a1631ac0]] | ACCESS_EVENT |
2 | 2 | [[#a1631ac0]] | ENTRY_EVENT |