Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
5 | 2 | 0 | 1.000 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 5 | 145 | plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIDebugElement.java |
2 | 5 | 80 | plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIType.java |
| ||||
/** * Throws a new debug exception with a status code of <code>TARGET_REQUEST_FAILED</code> * with the given underlying exception. If the underlying exception is not a JDI * exception, the original exception is thrown. * * @param message Failure message * @param e underlying exception that has occurred * @throws DebugException The exception with a status code of <code>TARGET_REQUEST_FAILED</code> */ public void targetRequestFailed(String message, RuntimeException e) throws DebugException { if (e == null || e.getClass().getName().startsWith("com.sun.jdi") || e instanceof TimeoutException) { //$NON-NLS-1$ requestFailed(message, e, DebugException.TARGET_REQUEST_FAILED); } else { throw e; } } |
| ||||
/** * Throws a new debug exception with a status code of <code>TARGET_REQUEST_FAILED</code> * with the given underlying exception. If the underlying exception is not a JDI * exception, the original exception is thrown. * * @param message Failure message * @param e underlying exception that has occurred * @throws DebugException The exception with a status code of <code>TARGET_REQUEST_FAILED</code> */ public void targetRequestFailed(String message, RuntimeException e) throws DebugException { if (e == null || e.getClass().getName().startsWith("com.sun.jdi") || e instanceof TimeoutException) { //$NON-NLS-1$ requestFailed(message, e, DebugException.TARGET_REQUEST_FAILED); } else { throw e; } } |
| |||
/** * Throws a new debug exception with a status code of <code>TARGET_REQUEST_FAILED</code> * with the given underlying exception. If the underlying exception is not a JDI * exception, the original exception is thrown. * * @param message Failure message * @param e underlying exception 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. If the underlying exception is not a JDI * exception, the original exception is thrown. * * @param message Failure message * @param e underlying exception that has occurred * @throws DebugException The exception with a status code of <code>TARGET_REQUEST_FAILED</code> */ public void targetRequestFailed(String message, RuntimeException e) throws DebugException { if (e == null || e.getClass().getName().startsWith("com.sun.jdi") || e instanceof TimeoutException) { //$NON-NLS-1$ requestFailed(message, e, DebugException.TARGET_REQUEST_FAILED); } else { throw e; } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
None |