Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
9 | 2 | 2 | 0.978 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 9 | 162 | plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIReferenceType.java |
2 | 9 | 189 | plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIReferenceType.java |
| ||||
/* (non-Javadoc) * @see org.eclipse.jdt.debug.core.IJavaReferenceType#getSourcePaths(java.lang.String) */ public String[] getSourcePaths(String stratum) throws DebugException { try { List sourcePaths = getReferenceType().sourcePaths(stratum); return (String[]) sourcePaths.toArray(new String[sourcePaths.size()]); } catch (AbsentInformationException e) { } catch (RuntimeException e) { requestFailed(JDIDebugModelMessages.JDIReferenceType_4, e, DebugException.TARGET_REQUEST_FAILED); } return null; } |
| ||||
/* (non-Javadoc) * @see org.eclipse.jdt.debug.core.IJavaReferenceType#getSourceNames(java.lang.String) */ public String[] getSourceNames(String stratum) throws DebugException { try { List sourceNames = getReferenceType().sourceNames(stratum); return (String[]) sourceNames.toArray(new String[sourceNames.size()]); } catch (AbsentInformationException e) { } catch (RuntimeException e) { requestFailed(JDIDebugModelMessages.JDIReferenceType_4, e, DebugException.TARGET_REQUEST_FAILED); } return null; } |
| |||
/* (non-Javadoc) * @see org.eclipse.jdt.debug.core.IJavaReferenceType#getSourcePaths(java.lang.String) */ /* (non-Javadoc) * @see org.eclipse.jdt.debug.core.IJavaReferenceType#getSourceNames(java.lang.String) */ public String[] [[#variable9a4d8700]](String stratum) throws DebugException { try { List [[#variable9a4d8680]]= getReferenceType(). [[#variable9a4d8680]](stratum); return (String[]) [[#variable9a4d8680]].toArray(new String[ [[#variable9a4d8680]].size()]); } catch (AbsentInformationException e) { } catch (RuntimeException e) { requestFailed(JDIDebugModelMessages.JDIReferenceType_4, e, DebugException.TARGET_REQUEST_FAILED); } return null; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#9a4d8700]] | getSourcePaths |
1 | 2 | [[#9a4d8700]] | getSourceNames |
2 | 1 | [[#9a4d8680]] | sourcePaths |
2 | 2 | [[#9a4d8680]] | sourceNames |