Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
4 | 3 | 3 | 0.970 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 4 | 144 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/FieldImpl.java |
2 | 3 | 631 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/MethodImpl.java |
3 | 3 | 639 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/MethodImpl.java |
| ||||
/** * Writes JDWP representation, including ReferenceType. */ public void writeWithReferenceType(MirrorImpl target, DataOutputStream out) throws IOException { // See EventRequest case FieldOnly referenceTypeImpl().write(target, out); write(target, out); } |
| ||||
/** * Writes JDWP representation, including ReferenceType. */ protected void writeWithReferenceType(MirrorImpl target, DataOutputStream out) throws IOException { referenceTypeImpl().write(target, out); write(target, out); } |
| ||||
/** * Writes JDWP representation, including ReferenceType with Tag. */ protected void writeWithReferenceTypeWithTag(MirrorImpl target, DataOutputStream out) throws IOException { referenceTypeImpl().writeWithTag(target, out); write(target, out); } |
| |||
[[#variable92d3edc0]]void [[#variable92d3ecc0]](MirrorImpl target, DataOutputStream out) throws IOException { // See EventRequest case FieldOnly referenceTypeImpl(). [[#variable92d3ece0]](target, out); write(target, out); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#92d3edc0]] | /** * Writes JDWP representation, including ReferenceType. */ public |
1 | 2 | [[#92d3edc0]] | /** * Writes JDWP representation, including ReferenceType with Tag. */ protected |
1 | 3 | [[#92d3edc0]] | /** * Writes JDWP representation, including ReferenceType. */ protected |
2 | 1 | [[#92d3ecc0]] | writeWithReferenceType |
2 | 2 | [[#92d3ecc0]] | writeWithReferenceTypeWithTag |
2 | 3 | [[#92d3ecc0]] | writeWithReferenceType |
3 | 1 | [[#92d3ece0]] | write |
3 | 2 | [[#92d3ece0]] | writeWithTag |
3 | 3 | [[#92d3ece0]] | write |