Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
6 | 2 | 4 | 0.969 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 6 | 112 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/EventRequestManagerImpl.java |
2 | 6 | 181 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/EventRequestManagerImpl.java |
| ||||
/** * Creates AccessWatchpointRequest. */ public AccessWatchpointRequest createAccessWatchpointRequest(Field field) { FieldImpl fieldImpl = (FieldImpl) field; AccessWatchpointRequestImpl req = new AccessWatchpointRequestImpl(virtualMachineImpl()); req.addFieldFilter(fieldImpl); addEventRequest(ACCESS_WATCHPOINT_INDEX, req); return req; } |
| ||||
/** * Creates ModificationWatchpointRequest. */ public ModificationWatchpointRequest createModificationWatchpointRequest(Field field) { FieldImpl fieldImpl = (FieldImpl) field; ModificationWatchpointRequestImpl req = new ModificationWatchpointRequestImpl(virtualMachineImpl()); req.addFieldFilter(fieldImpl); addEventRequest(MODIFICATION_WATCHPOINT_INDEX, req); return req; } |
| |||
/** * Creates AccessWatchpointRequest. */ /** * Creates ModificationWatchpointRequest. */ public [[#variable5b636f00]] [[#variable5b636ea0]](Field field) { FieldImpl fieldImpl = (FieldImpl) field; [[#variable5b636e20]] req = new [[#variable5b636e20]](virtualMachineImpl()); req.addFieldFilter(fieldImpl); addEventRequest( [[#variable5b636d20]], req); return req; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#5b636f00]] | AccessWatchpointRequest |
1 | 2 | [[#5b636f00]] | ModificationWatchpointRequest |
2 | 1 | [[#5b636ea0]] | createAccessWatchpointRequest |
2 | 2 | [[#5b636ea0]] | createModificationWatchpointRequest |
3 | 1 | [[#5b636e20]] | AccessWatchpointRequestImpl |
3 | 2 | [[#5b636e20]] | ModificationWatchpointRequestImpl |
4 | 1 | [[#5b636d20]] | ACCESS_WATCHPOINT_INDEX |
4 | 2 | [[#5b636d20]] | MODIFICATION_WATCHPOINT_INDEX |