Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
2 | 8 | 4 | 0.960 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 2 | 73 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/BooleanValueImpl.java |
2 | 2 | 73 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/ByteValueImpl.java |
3 | 2 | 73 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/CharValueImpl.java |
4 | 2 | 73 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/DoubleValueImpl.java |
5 | 2 | 73 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/FloatValueImpl.java |
6 | 2 | 73 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/IntegerValueImpl.java |
7 | 2 | 73 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/LongValueImpl.java |
8 | 2 | 73 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/ShortValueImpl.java |
| ||||
/** * Writes value without value tag. */ public void write(MirrorImpl target, DataOutputStream out) throws IOException { target.writeBoolean(((Boolean) fValue).booleanValue(), "booleanValue", out); //$NON-NLS-1$ } |
| ||||
/** * Writes value without value tag. */ public void write(MirrorImpl target, DataOutputStream out) throws IOException { target.writeByte(((Byte) fValue).byteValue(), "byteValue", out); //$NON-NLS-1$ } |
| ||||
/** * Writes value without value tag. */ public void write(MirrorImpl target, DataOutputStream out) throws IOException { target.writeChar(((Character) fValue).charValue(), "charValue", out); //$NON-NLS-1$ } |
| ||||
/** * Writes value without value tag. */ public void write(MirrorImpl target, DataOutputStream out) throws IOException { target.writeDouble(((Double) fValue).doubleValue(), "doubleValue", out); //$NON-NLS-1$ } |
| ||||
/** * Writes value without value tag. */ public void write(MirrorImpl target, DataOutputStream out) throws IOException { target.writeFloat(((Float) fValue).floatValue(), "floatValue", out); //$NON-NLS-1$ } |
| ||||
/** * Writes value without value tag. */ public void write(MirrorImpl target, DataOutputStream out) throws IOException { target.writeInt(((Integer) fValue).intValue(), "intValue", out); //$NON-NLS-1$ } |
| ||||
/** * Writes value without value tag. */ public void write(MirrorImpl target, DataOutputStream out) throws IOException { target.writeLong(((Long) fValue).longValue(), "longValue", out); //$NON-NLS-1$ } |
| ||||
/** * Writes value without value tag. */ public void write(MirrorImpl target, DataOutputStream out) throws IOException { target.writeShort(((Short) fValue).shortValue(), "shortValue", out); //$NON-NLS-1$ } |
| |||
/** * Writes value without value tag. */ public void write(MirrorImpl target, DataOutputStream out) throws IOException { target. [[#variableb19c91a0]]((( [[#variableb19c9120]]) fValue). [[#variableb19c9060]](), [[#variableb19c8f60]], out); //$NON-NLS-1$ } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#b19c91a0]] | writeShort |
1 | 2 | [[#b19c91a0]] | writeLong |
1 | 3 | [[#b19c91a0]] | writeInt |
1 | 4 | [[#b19c91a0]] | writeFloat |
1 | 5 | [[#b19c91a0]] | writeDouble |
1 | 6 | [[#b19c91a0]] | writeChar |
1 | 7 | [[#b19c91a0]] | writeByte |
1 | 8 | [[#b19c91a0]] | writeBoolean |
2 | 1 | [[#b19c9120]] | Short |
2 | 2 | [[#b19c9120]] | Long |
2 | 3 | [[#b19c9120]] | Integer |
2 | 4 | [[#b19c9120]] | Float |
2 | 5 | [[#b19c9120]] | Double |
2 | 6 | [[#b19c9120]] | Character |
2 | 7 | [[#b19c9120]] | Byte |
2 | 8 | [[#b19c9120]] | Boolean |
3 | 1 | [[#b19c9060]] | shortValue |
3 | 2 | [[#b19c9060]] | longValue |
3 | 3 | [[#b19c9060]] | intValue |
3 | 4 | [[#b19c9060]] | floatValue |
3 | 5 | [[#b19c9060]] | doubleValue |
3 | 6 | [[#b19c9060]] | charValue |
3 | 7 | [[#b19c9060]] | byteValue |
3 | 8 | [[#b19c9060]] | booleanValue |
4 | 1 | [[#b19c8f60]] | "shortValue" |
4 | 2 | [[#b19c8f60]] | "longValue" |
4 | 3 | [[#b19c8f60]] | "intValue" |
4 | 4 | [[#b19c8f60]] | "floatValue" |
4 | 5 | [[#b19c8f60]] | "doubleValue" |
4 | 6 | [[#b19c8f60]] | "charValue" |
4 | 7 | [[#b19c8f60]] | "byteValue" |
4 | 8 | [[#b19c8f60]] | "booleanValue" |