Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
9 | 2 | 2 | 0.986 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 9 | 199 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/MirrorImpl.java |
2 | 9 | 214 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/MirrorImpl.java |
| ||||
/** * Performs a VM request for a specified object. * @return Returns reply data. */ public JdwpReplyPacket requestVM(int command, ObjectReferenceImpl object) { ByteArrayOutputStream byteOutStream = new ByteArrayOutputStream(); DataOutputStream dataOutStream = new DataOutputStream(byteOutStream); try { object.write(this, dataOutStream); } catch (IOException e) { defaultIOExceptionHandler(e); } return requestVM(command, byteOutStream); } |
| ||||
/** * Performs a VM request for a specified object. * @return Returns reply data. */ public JdwpReplyPacket requestVM(int command, ReferenceTypeImpl refType) { ByteArrayOutputStream byteOutStream = new ByteArrayOutputStream(); DataOutputStream dataOutStream = new DataOutputStream(byteOutStream); try { refType.write(this, dataOutStream); } catch (IOException e) { defaultIOExceptionHandler(e); } return requestVM(command, byteOutStream); } |
| |||
/** * Performs a VM request for a specified object. * @return Returns reply data. */ public JdwpReplyPacket requestVM(int command, [[#variable53aa59a0]] [[#variable53aa5940]]) { ByteArrayOutputStream byteOutStream = new ByteArrayOutputStream(); DataOutputStream dataOutStream = new DataOutputStream(byteOutStream); try { [[#variable53aa5940]].write(this, dataOutStream); } catch (IOException e) { defaultIOExceptionHandler(e); } return requestVM(command, byteOutStream); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#53aa59a0]] | ObjectReferenceImpl |
1 | 2 | [[#53aa59a0]] | ReferenceTypeImpl |
2 | 1 | [[#53aa5940]] | object |
2 | 2 | [[#53aa5940]] | refType |