Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
4 | 7 | 4 | 0.950 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 4 | 134 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/EventRequestManagerImpl.java |
2 | 4 | 143 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/EventRequestManagerImpl.java |
3 | 4 | 163 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/EventRequestManagerImpl.java |
4 | 4 | 172 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/EventRequestManagerImpl.java |
5 | 4 | 203 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/EventRequestManagerImpl.java |
6 | 4 | 212 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/EventRequestManagerImpl.java |
7 | 4 | 222 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/EventRequestManagerImpl.java |
| ||||
/** * Creates ClassPrepareRequest. */ public ClassPrepareRequest createClassPrepareRequest() { ClassPrepareRequestImpl req = new ClassPrepareRequestImpl(virtualMachineImpl()); addEventRequest(CLASS_PREPARE_INDEX, req); return req; } |
| ||||
/** * Creates ClassUnloadRequest. */ public ClassUnloadRequest createClassUnloadRequest() { ClassUnloadRequestImpl req = new ClassUnloadRequestImpl(virtualMachineImpl()); addEventRequest(CLASS_UNLOAD_INDEX, req); return req; } |
| ||||
/** * Creates MethodEntryRequest. */ public MethodEntryRequest createMethodEntryRequest() { MethodEntryRequestImpl req = new MethodEntryRequestImpl(virtualMachineImpl()); addEventRequest(METHOD_ENTRY_INDEX, req); return req; } |
| ||||
/** * Creates MethodExitRequest. */ public MethodExitRequest createMethodExitRequest() { MethodExitRequestImpl req = new MethodExitRequestImpl(virtualMachineImpl()); addEventRequest(METHOD_EXIT_INDEX, req); return req; } |
| ||||
/** * Creates ThreadDeathRequest. */ public ThreadDeathRequest createThreadDeathRequest() { ThreadDeathRequestImpl req = new ThreadDeathRequestImpl(virtualMachineImpl()); addEventRequest(THREAD_DEATH_INDEX, req); return req; } |
| ||||
/** * Creates ThreadStartRequest. */ public ThreadStartRequest createThreadStartRequest() { ThreadStartRequestImpl req = new ThreadStartRequestImpl(virtualMachineImpl()); addEventRequest(THREAD_START_INDEX, req); return req; } |
| ||||
/* * @see EventRequestManager#createVMDeathRequest() */ public VMDeathRequest createVMDeathRequest() { VMDeathRequestImpl req = new VMDeathRequestImpl(virtualMachineImpl()); addEventRequest(VM_DEATH_INDEX, req); return req; } |
| |||
/** * Creates ClassPrepareRequest. */ /** * Creates ClassUnloadRequest. */ /** * Creates MethodEntryRequest. */ /** * Creates MethodExitRequest. */ /** * Creates ThreadDeathRequest. */ /** * Creates ThreadStartRequest. */ /* * @see EventRequestManager#createVMDeathRequest() */ public [[#variablebc2e3b80]] [[#variableb9b6d420]]() { [[#variableb9b6c380]] req = new [[#variableb9b6c380]](virtualMachineImpl()); addEventRequest( [[#variableb9b6d560]], req); return req; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#bc2e3b80]] | ClassPrepareRequest |
1 | 2 | [[#bc2e3b80]] | ClassUnloadRequest |
1 | 3 | [[#bc2e3b80]] | MethodEntryRequest |
1 | 4 | [[#bc2e3b80]] | MethodExitRequest |
1 | 5 | [[#bc2e3b80]] | ThreadDeathRequest |
1 | 6 | [[#bc2e3b80]] | ThreadStartRequest |
1 | 7 | [[#bc2e3b80]] | VMDeathRequest |
2 | 1 | [[#b9b6d420]] | createClassPrepareRequest |
2 | 2 | [[#b9b6d420]] | createClassUnloadRequest |
2 | 3 | [[#b9b6d420]] | createMethodEntryRequest |
2 | 4 | [[#b9b6d420]] | createMethodExitRequest |
2 | 5 | [[#b9b6d420]] | createThreadDeathRequest |
2 | 6 | [[#b9b6d420]] | createThreadStartRequest |
2 | 7 | [[#b9b6d420]] | createVMDeathRequest |
3 | 1 | [[#b9b6c380]] | ClassPrepareRequestImpl |
3 | 2 | [[#b9b6c380]] | ClassUnloadRequestImpl |
3 | 3 | [[#b9b6c380]] | MethodEntryRequestImpl |
3 | 4 | [[#b9b6c380]] | MethodExitRequestImpl |
3 | 5 | [[#b9b6c380]] | ThreadDeathRequestImpl |
3 | 6 | [[#b9b6c380]] | ThreadStartRequestImpl |
3 | 7 | [[#b9b6c380]] | VMDeathRequestImpl |
4 | 1 | [[#b9b6d560]] | CLASS_PREPARE_INDEX |
4 | 2 | [[#b9b6d560]] | CLASS_UNLOAD_INDEX |
4 | 3 | [[#b9b6d560]] | METHOD_ENTRY_INDEX |
4 | 4 | [[#b9b6d560]] | METHOD_EXIT_INDEX |
4 | 5 | [[#b9b6d560]] | THREAD_DEATH_INDEX |
4 | 6 | [[#b9b6d560]] | THREAD_START_INDEX |
4 | 7 | [[#b9b6d560]] | VM_DEATH_INDEX |