Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
2 | 3 | 2 | 0.981 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 2 | 286 | plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/JDIDebugPlugin.java |
2 | 2 | 296 | plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/JDIDebugPlugin.java |
3 | 2 | 306 | plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/JDIDebugPlugin.java |
| ||||
/** * Notifies listeners that the given breakpoint is about to be * added. * * @param target Java debug target * @param breakpoint Java breakpoint */ public void fireBreakpointAdding(IJavaDebugTarget target, IJavaBreakpoint breakpoint) { getBreakpointNotifier().notify(target, breakpoint, ADDING, null, null); } |
| ||||
/** * Notifies listeners that the given breakpoint has been installed. * * @param target Java debug target * @param breakpoint Java breakpoint */ public void fireBreakpointInstalled(IJavaDebugTarget target, IJavaBreakpoint breakpoint) { getBreakpointNotifier().notify(target, breakpoint, INSTALLED, null, null); } |
| ||||
/** * Notifies listeners that the given breakpoint has been removed. * * @param target Java debug target * @param breakpoint Java breakpoint */ public void fireBreakpointRemoved(IJavaDebugTarget target, IJavaBreakpoint breakpoint) { getBreakpointNotifier().notify(target, breakpoint, REMOVED, null, null); } |
| |||
/** * Notifies listeners that the given breakpoint is about to be * added. * * @param target Java debug target * @param breakpoint Java breakpoint */ /** * Notifies listeners that the given breakpoint has been installed. * * @param target Java debug target * @param breakpoint Java breakpoint */ /** * Notifies listeners that the given breakpoint has been removed. * * @param target Java debug target * @param breakpoint Java breakpoint */ public void [[#variable9a1811e0]](IJavaDebugTarget target, IJavaBreakpoint breakpoint) { getBreakpointNotifier().notify(target, breakpoint, [[#variable9a181180]], null, null); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#9a1811e0]] | fireBreakpointAdding |
1 | 2 | [[#9a1811e0]] | fireBreakpointInstalled |
1 | 3 | [[#9a1811e0]] | fireBreakpointRemoved |
2 | 1 | [[#9a181180]] | ADDING |
2 | 2 | [[#9a181180]] | INSTALLED |
2 | 3 | [[#9a181180]] | REMOVED |