| Previous CloneSet | Next CloneSet | Back to Main Report |
| Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
|---|---|---|---|---|
| 2 | 2 | 2 | 0.978 | class_body_declaration |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 2 | 217 | plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/JavaMethodBreakpoint.java |
| 2 | 2 | 230 | plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/JavaMethodBreakpoint.java |
| ||||
/**
* Returns a new method entry request for this breakpoint's
* criteria
*
* @param the target in which to create the request
* @param type the type on which to create the request
* @return method entry request
* @exception CoreException if an exception occurs accessing
* this breakpoint's underlying marker
*/
protected EventRequest createMethodEntryRequest(JDIDebugTarget target, ReferenceType type) throws CoreException {
return createMethodRequest(target, type, true);
}
|
| ||||
/**
* Returns a new method exit request for the given reference type
*
* @param target the target in which to create the request
* @param type the type on which to create the request
* @return method exit request
* @exception CoreException if an exception occurs accessing
* this breakpoint's underlying marker
*/
protected EventRequest createMethodExitRequest(JDIDebugTarget target, ReferenceType type) throws CoreException {
return createMethodRequest(target, type, false);
}
|
| |||
/**
* Returns a new method entry request for this breakpoint's
* criteria
*
* @param the target in which to create the request
* @param type the type on which to create the request
* @return method entry request
* @exception CoreException if an exception occurs accessing
* this breakpoint's underlying marker
*/
/**
* Returns a new method exit request for the given reference type
*
* @param target the target in which to create the request
* @param type the type on which to create the request
* @return method exit request
* @exception CoreException if an exception occurs accessing
* this breakpoint's underlying marker
*/
protected EventRequest [[#variable4f09bb40]](JDIDebugTarget target, ReferenceType type) throws CoreException {
return createMethodRequest(target, type, [[#variable4f09ba60]]);
}
|
| CloneAbstraction |
| Parameter Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#4f09bb40]] | createMethodEntryRequest |
| 1 | 2 | [[#4f09bb40]] | createMethodExitRequest |
| 2 | 1 | [[#4f09ba60]] | true |
| 2 | 2 | [[#4f09ba60]] | false |