CloneSet6948


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
3210.991class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
13253
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIStackFrame.java
23183
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIValue.java
Clone Instance
1
Line Count
3
Source Line
253
Source File
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIStackFrame.java

        /**
         * @see IStackFrame#getVariables()
         */
        public IVariable[] getVariables() throws DebugException {
                List list = getVariables0();
                return (IVariable[]) list.toArray(new IVariable[list.size()]);
        }


Clone Instance
2
Line Count
3
Source Line
183
Source File
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIValue.java

        /**
         * @see IValue#getVariables()
         */
        public IVariable[] getVariables() throws DebugException {
                List list = getVariablesList();
                return (IVariable[]) list.toArray(new IVariable[list.size()]);
        }


Clone AbstractionParameter Count: 1Parameter Bindings

/**
         * @see IValue#getVariables()
         */
/**
         * @see IStackFrame#getVariables()
         */
public IVariable[] getVariables() throws DebugException {
  List list = [[#variable544bf760]]();
  return (IVariable[]) list.toArray(new IVariable[list.size()]);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#544bf760]]
getVariablesList 
12[[#544bf760]]
getVariables0