Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
6 | 2 | 2 | 0.982 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 6 | 2172 | plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIDebugTarget.java |
2 | 6 | 2183 | plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIDebugTarget.java |
| ||||
/* (non-Javadoc) * @see org.eclipse.jdt.debug.core.IJavaDebugTarget#supportsAccessWatchpoints() */ public boolean supportsAccessWatchpoints() { VirtualMachine vm = getVM(); if (isAvailable() && vm != null) { return vm.canWatchFieldAccess(); } return false; } |
| ||||
/* (non-Javadoc) * @see org.eclipse.jdt.debug.core.IJavaDebugTarget#supportsModificationWatchpoints() */ public boolean supportsModificationWatchpoints() { VirtualMachine vm = getVM(); if (isAvailable() && vm != null) { return vm.canWatchFieldModification(); } return false; } |
| |||
/* (non-Javadoc) * @see org.eclipse.jdt.debug.core.IJavaDebugTarget#supportsAccessWatchpoints() */ /* (non-Javadoc) * @see org.eclipse.jdt.debug.core.IJavaDebugTarget#supportsModificationWatchpoints() */ public boolean [[#variable63df6a20]]() { VirtualMachine vm = getVM(); if (isAvailable() && vm != null) { return vm. [[#variable63df6980]](); } return false; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#63df6a20]] | supportsAccessWatchpoints |
1 | 2 | [[#63df6a20]] | supportsModificationWatchpoints |
2 | 1 | [[#63df6980]] | canWatchFieldAccess |
2 | 2 | [[#63df6980]] | canWatchFieldModification |