Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
11 | 2 | 0 | 1.000 | class_body_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 11 | 231 | plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/monitors/JavaMonitor.java |
2 | 11 | 297 | plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/monitors/JavaMonitorThread.java |
| ||||
/** * Indicate if this monitor is currently part of a deadlock */ public boolean isInDeadlock() { return fIsInDeadlock; } /** * Set this monitor as being part of a deadlock. */ public void setInDeadlock(boolean isInDeadlock) { boolean oldValue = fIsInDeadlock; fIsInDeadlock = isInDeadlock; if (oldValue != isInDeadlock) { fireChangeEvent(DebugEvent.STATE); } } |
| ||||
/** * Indicate if this thread is currently part of a deadlock */ public boolean isInDeadlock() { return fIsInDeadlock; } /** * Set this thread as being part of a deadlock. */ public void setInDeadlock(boolean isInDeadlock) { boolean oldValue = fIsInDeadlock; fIsInDeadlock = isInDeadlock; if (oldValue != isInDeadlock) { fireChangeEvent(DebugEvent.STATE); } } |
| |||
/** * Indicate if this monitor is currently part of a deadlock */ /** * Indicate if this thread is currently part of a deadlock */ public boolean isInDeadlock() { return fIsInDeadlock; } /** * Set this monitor as being part of a deadlock. */ /** * Set this thread as being part of a deadlock. */ public void setInDeadlock(boolean isInDeadlock) { boolean oldValue = fIsInDeadlock; fIsInDeadlock = isInDeadlock; if (oldValue != isInDeadlock) { fireChangeEvent(DebugEvent.STATE); } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
None |