| Previous CloneSet | Next CloneSet | Back to Main Report |
| Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
|---|---|---|---|---|
| 6 | 8 | 2 | 0.971 | class_body_declaration |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 6 | 302 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/MirrorImpl.java |
| 2 | 6 | 314 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/MirrorImpl.java |
| 3 | 6 | 326 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/MirrorImpl.java |
| 4 | 6 | 338 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/MirrorImpl.java |
| 5 | 6 | 398 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/MirrorImpl.java |
| 6 | 6 | 410 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/MirrorImpl.java |
| 7 | 6 | 422 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/MirrorImpl.java |
| 8 | 6 | 434 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/MirrorImpl.java |
| ||||
/**
* Reads Jdwp data and, if verbose is on, outputs verbose info.
* @return Returns value that has been read.
*/
public byte readByte(String description, DataInputStream in) throws IOException {
byte result = in.readByte();
if (fVerboseWriter != null) {
fVerboseWriter.println(description, result);
}
return result;
}
|
| ||||
/**
* Reads Jdwp data and, if verbose is on, outputs verbose info.
* @return Returns value that has been read.
*/
public short readShort(String description, DataInputStream in) throws IOException {
short result = in.readShort();
if (fVerboseWriter != null) {
fVerboseWriter.println(description, result);
}
return result;
}
|
| ||||
/**
* Reads Jdwp data and, if verbose is on, outputs verbose info.
* @return Returns value that has been read.
*/
public int readInt(String description, DataInputStream in) throws IOException {
int result = in.readInt();
if (fVerboseWriter != null) {
fVerboseWriter.println(description, result);
}
return result;
}
|
| ||||
/**
* Reads Jdwp data and, if verbose is on, outputs verbose info.
* @return Returns value that has been read.
*/
public long readLong(String description, DataInputStream in) throws IOException {
long result = in.readLong();
if (fVerboseWriter != null) {
fVerboseWriter.println(description, result);
}
return result;
}
|
| ||||
/**
* Reads Jdwp data and, if verbose is on, outputs verbose info.
* @return Returns value that has been read.
*/
public boolean readBoolean(String description, DataInputStream in) throws IOException {
boolean result = in.readBoolean();
if (fVerboseWriter != null) {
fVerboseWriter.println(description, result);
}
return result;
}
|
| ||||
/**
* Reads Jdwp data and, if verbose is on, outputs verbose info.
* @return Returns value that has been read.
*/
public char readChar(String description, DataInputStream in) throws IOException {
char result = in.readChar();
if (fVerboseWriter != null) {
fVerboseWriter.println(description, result);
}
return result;
}
|
| ||||
/**
* Reads Jdwp data and, if verbose is on, outputs verbose info.
* @return Returns value that has been read.
*/
public double readDouble(String description, DataInputStream in) throws IOException {
double result = in.readDouble();
if (fVerboseWriter != null) {
fVerboseWriter.println(description, result);
}
return result;
}
|
| ||||
/**
* Reads Jdwp data and, if verbose is on, outputs verbose info.
* @return Returns value that has been read.
*/
public float readFloat(String description, DataInputStream in) throws IOException {
float result = in.readFloat();
if (fVerboseWriter != null) {
fVerboseWriter.println(description, result);
}
return result;
}
|
| |||
/**
* Reads Jdwp data and, if verbose is on, outputs verbose info.
* @return Returns value that has been read.
*/
public [[#variableb30ec3c0]] [[#variablebc33f060]](String description, DataInputStream in) throws IOException {
[[#variableb30ec3c0]] result = in. [[#variablebc33f060]]();
if (fVerboseWriter != null) {
fVerboseWriter.println(description, result);
}
return result;
}
|
| CloneAbstraction |
| Parameter Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#b30ec3c0]] | byte |
| 1 | 2 | [[#b30ec3c0]] | short |
| 1 | 3 | [[#b30ec3c0]] | int |
| 1 | 4 | [[#b30ec3c0]] | long |
| 1 | 5 | [[#b30ec3c0]] | boolean |
| 1 | 6 | [[#b30ec3c0]] | char |
| 1 | 7 | [[#b30ec3c0]] | double |
| 1 | 8 | [[#b30ec3c0]] | float |
| 2 | 1 | [[#bc33f060]] | readByte |
| 2 | 2 | [[#bc33f060]] | readShort |
| 2 | 3 | [[#bc33f060]] | readInt |
| 2 | 4 | [[#bc33f060]] | readLong |
| 2 | 5 | [[#bc33f060]] | readBoolean |
| 2 | 6 | [[#bc33f060]] | readChar |
| 2 | 7 | [[#bc33f060]] | readDouble |
| 2 | 8 | [[#bc33f060]] | readFloat |