Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
2 | 2 | 1 | 0.988 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 2 | 172 | plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIDebugElement.java |
2 | 2 | 185 | plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIDebugElement.java |
| ||||
/** * Throws a new debug exception with a status code of <code>TARGET_REQUEST_FAILED</code>. * * @param message Failure message * @param e Throwable that has occurred * @throws DebugException The exception with a status code of <code>TARGET_REQUEST_FAILED</code> */ public void targetRequestFailed(String message, Throwable e) throws DebugException { throwDebugException(message, DebugException.TARGET_REQUEST_FAILED, e); } |
| ||||
/** * Throws a new debug exception with a status code of <code>TARGET_REQUEST_FAILED</code> * with the given underlying exception. The underlying exception is an exception thrown * by a JDI request. * * @param message Failure message * @param e throwable exception that has occurred * @throws DebugException the exception with a status code of <code>TARGET_REQUEST_FAILED</code> */ public void jdiRequestFailed(String message, Throwable e) throws DebugException { throwDebugException(message, DebugException.TARGET_REQUEST_FAILED, e); } |
| |||
/** * Throws a new debug exception with a status code of <code>TARGET_REQUEST_FAILED</code>. * * @param message Failure message * @param e Throwable that has occurred * @throws DebugException The exception with a status code of <code>TARGET_REQUEST_FAILED</code> */ /** * Throws a new debug exception with a status code of <code>TARGET_REQUEST_FAILED</code> * with the given underlying exception. The underlying exception is an exception thrown * by a JDI request. * * @param message Failure message * @param e throwable exception that has occurred * @throws DebugException the exception with a status code of <code>TARGET_REQUEST_FAILED</code> */ public void [[#variablebd0a0500]](String message, Throwable e) throws DebugException { throwDebugException(message, DebugException.TARGET_REQUEST_FAILED, e); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#bd0a0500]] | targetRequestFailed |
1 | 2 | [[#bd0a0500]] | jdiRequestFailed |