Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
4 | 8 | 2 | 0.975 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 4 | 458 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/MirrorImpl.java |
2 | 4 | 468 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/MirrorImpl.java |
3 | 4 | 478 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/MirrorImpl.java |
4 | 4 | 488 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/MirrorImpl.java |
5 | 4 | 538 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/MirrorImpl.java |
6 | 4 | 548 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/MirrorImpl.java |
7 | 4 | 558 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/MirrorImpl.java |
8 | 4 | 568 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/MirrorImpl.java |
| ||||
/** * Writes Jdwp data and, if verbose is on, outputs verbose info. */ public void writeByte(byte value, String description, DataOutputStream out) throws IOException { out.writeByte(value); if (fVerboseWriter != null) { fVerboseWriter.println(description, value); } } |
| ||||
/** * Writes Jdwp data and, if verbose is on, outputs verbose info. */ public void writeShort(short value, String description, DataOutputStream out) throws IOException { out.writeShort(value); if (fVerboseWriter != null) { fVerboseWriter.println(description, value); } } |
| ||||
/** * Writes Jdwp data and, if verbose is on, outputs verbose info. */ public void writeInt(int value, String description, DataOutputStream out) throws IOException { out.writeInt(value); if (fVerboseWriter != null) { fVerboseWriter.println(description, value); } } |
| ||||
/** * Writes Jdwp data and, if verbose is on, outputs verbose info. */ public void writeLong(long value, String description, DataOutputStream out) throws IOException { out.writeLong(value); if (fVerboseWriter != null) { fVerboseWriter.println(description, value); } } |
| ||||
/** * Writes Jdwp data and, if verbose is on, outputs verbose info. */ public void writeBoolean(boolean value, String description, DataOutputStream out) throws IOException { out.writeBoolean(value); if (fVerboseWriter != null) { fVerboseWriter.println(description, value); } } |
| ||||
/** * Writes Jdwp data and, if verbose is on, outputs verbose info. */ public void writeChar(char value, String description, DataOutputStream out) throws IOException { out.writeChar(value); if (fVerboseWriter != null) { fVerboseWriter.println(description, value); } } |
| ||||
/** * Writes Jdwp data and, if verbose is on, outputs verbose info. */ public void writeDouble(double value, String description, DataOutputStream out) throws IOException { out.writeDouble(value); if (fVerboseWriter != null) { fVerboseWriter.println(description, value); } } |
| ||||
/** * Writes Jdwp data and, if verbose is on, outputs verbose info. */ public void writeFloat(float value, String description, DataOutputStream out) throws IOException { out.writeFloat(value); if (fVerboseWriter != null) { fVerboseWriter.println(description, value); } } |
| |||
/** * Writes Jdwp data and, if verbose is on, outputs verbose info. */ public void [[#variable53855c40]]( [[#variable53855ba0]] value, String description, DataOutputStream out) throws IOException { out. [[#variable53855c40]](value); if (fVerboseWriter != null) { fVerboseWriter.println(description, value); } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#53855c40]] | writeByte |
1 | 2 | [[#53855c40]] | writeShort |
1 | 3 | [[#53855c40]] | writeInt |
1 | 4 | [[#53855c40]] | writeLong |
1 | 5 | [[#53855c40]] | writeBoolean |
1 | 6 | [[#53855c40]] | writeChar |
1 | 7 | [[#53855c40]] | writeDouble |
1 | 8 | [[#53855c40]] | writeFloat |
2 | 1 | [[#53855ba0]] | byte |
2 | 2 | [[#53855ba0]] | short |
2 | 3 | [[#53855ba0]] | int |
2 | 4 | [[#53855ba0]] | long |
2 | 5 | [[#53855ba0]] | boolean |
2 | 6 | [[#53855ba0]] | char |
2 | 7 | [[#53855ba0]] | double |
2 | 8 | [[#53855ba0]] | float |