Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
6 | 3 | 3 | 0.958 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 6 | 1234 | plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIThread.java |
2 | 6 | 1248 | plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIThread.java |
3 | 6 | 1262 | plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIThread.java |
| ||||
/** * This method is synchronized, such that the step request * begins before a background evaluation can be performed. * * @see IStep#stepInto() */ public synchronized void stepInto() throws DebugException { if ( !canStepInto()) { return; } StepHandler handler = new StepIntoHandler(); handler.step(); } |
| ||||
/** * This method is synchronized, such that the step request * begins before a background evaluation can be performed. * * @see IStep#stepOver() */ public synchronized void stepOver() throws DebugException { if ( !canStepOver()) { return; } StepHandler handler = new StepOverHandler(); handler.step(); } |
| ||||
/** * This method is synchronized, such that the step request * begins before a background evaluation can be performed. * * @see IStep#stepReturn() */ public synchronized void stepReturn() throws DebugException { if ( !canStepReturn()) { return; } StepHandler handler = new StepReturnHandler(); handler.step(); } |
| |||
/** * This method is synchronized, such that the step request * begins before a background evaluation can be performed. * * @see IStep#stepInto() */ /** * This method is synchronized, such that the step request * begins before a background evaluation can be performed. * * @see IStep#stepOver() */ /** * This method is synchronized, such that the step request * begins before a background evaluation can be performed. * * @see IStep#stepReturn() */ public synchronized void [[#variable64690e00]]() throws DebugException { if ( ! [[#variable64690da0]]()) { return; } StepHandler handler = new [[#variable64690d40]](); handler.step(); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#64690e00]] | stepInto |
1 | 2 | [[#64690e00]] | stepOver |
1 | 3 | [[#64690e00]] | stepReturn |
2 | 1 | [[#64690da0]] | canStepInto |
2 | 2 | [[#64690da0]] | canStepOver |
2 | 3 | [[#64690da0]] | canStepReturn |
3 | 1 | [[#64690d40]] | StepIntoHandler |
3 | 2 | [[#64690d40]] | StepOverHandler |
3 | 3 | [[#64690d40]] | StepReturnHandler |