CloneSet6766


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6330.958class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
161234
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIThread.java
261248
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIThread.java
361262
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIThread.java
Clone Instance
1
Line Count
6
Source Line
1234
Source File
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();
        }


Clone Instance
2
Line Count
6
Source Line
1248
Source File
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#stepOver()
         */
        public synchronized void stepOver() throws DebugException {
                if ( !canStepOver()) {
                        return;
                }
                StepHandler handler = new StepOverHandler();
                handler.step();
        }


Clone Instance
3
Line Count
6
Source Line
1262
Source File
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#stepReturn()
         */
        public synchronized void stepReturn() throws DebugException {
                if ( !canStepReturn()) {
                        return;
                }
                StepHandler handler = new StepReturnHandler();
                handler.step();
        }


Clone AbstractionParameter Count: 3Parameter Bindings

/**
         * 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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#64690e00]]
stepInto 
12[[#64690e00]]
stepOver 
13[[#64690e00]]
stepReturn 
21[[#64690da0]]
canStepInto 
22[[#64690da0]]
canStepOver 
23[[#64690da0]]
canStepReturn 
31[[#64690d40]]
StepIntoHandler 
32[[#64690d40]]
StepOverHandler 
33[[#64690d40]]
StepReturnHandler