Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
8 | 3 | 4 | 0.966 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 8 | 481 | plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/JDIModelPresentation.java |
2 | 8 | 491 | plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/JDIModelPresentation.java |
3 | 8 | 501 | plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/JDIModelPresentation.java |
| ||||
private StringBuffer appendUnsignedText(IJavaValue value, StringBuffer buffer) throws DebugException { String unsignedText = getValueUnsignedText(value); if (unsignedText != null) { buffer.append(" ["); //$NON-NLS-1$ buffer.append(unsignedText); buffer.append("]"); //$NON-NLS-1$ } return buffer; } |
| ||||
protected StringBuffer appendHexText(IJavaValue value, StringBuffer buffer) throws DebugException { String hexText = getValueHexText(value); if (hexText != null) { buffer.append(" ["); //$NON-NLS-1$ buffer.append(hexText); buffer.append("]"); //$NON-NLS-1$ } return buffer; } |
| ||||
protected StringBuffer appendCharText(IJavaValue value, StringBuffer buffer) throws DebugException { String charText = getValueCharText(value); if (charText != null) { buffer.append(" ["); //$NON-NLS-1$ buffer.append(charText); buffer.append("]"); //$NON-NLS-1$ } return buffer; } |
| |||
[[#variable5a30bcc0]]StringBuffer [[#variable5a30bc40]](IJavaValue value, StringBuffer buffer) throws DebugException { String [[#variable5a30bbc0]]= [[#variable5a30bc80]](value); if ( [[#variable5a30bbc0]]!= null) { buffer.append(" ["); //$NON-NLS-1$ buffer.append( [[#variable5a30bbc0]]); buffer.append("]"); //$NON-NLS-1$ } return buffer; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#5a30bcc0]] | protected |
1 | 2 | [[#5a30bcc0]] | protected |
1 | 3 | [[#5a30bcc0]] | private |
2 | 1 | [[#5a30bc40]] | appendCharText |
2 | 2 | [[#5a30bc40]] | appendHexText |
2 | 3 | [[#5a30bc40]] | appendUnsignedText |
3 | 1 | [[#5a30bbc0]] | charText |
3 | 2 | [[#5a30bbc0]] | hexText |
3 | 3 | [[#5a30bbc0]] | unsignedText |
4 | 1 | [[#5a30bc80]] | getValueCharText |
4 | 2 | [[#5a30bc80]] | getValueHexText |
4 | 3 | [[#5a30bc80]] | getValueUnsignedText |