CloneSet396


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6220.957method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16438
E:/TSE/Projects-CloneDR/jEdit-4.2/src/bsh/NameSpace.java
26451
E:/TSE/Projects-CloneDR/jEdit-4.2/src/bsh/NameSpace.java
Next
Last
Clone Instance
1
Line Count
6
Source Line
438
Source File
E:/TSE/Projects-CloneDR/jEdit-4.2/src/bsh/NameSpace.java

/**
        Get the parent namespace' This reference or this namespace' This
        reference if we are the top.
*/
public This getSuper(Interpreter declaringInterpreter) {
  if (parent != null)
    return parent.getThis(declaringInterpreter);
  else
    return getThis(declaringInterpreter);
}


First
Previous
Clone Instance
2
Line Count
6
Source Line
451
Source File
E:/TSE/Projects-CloneDR/jEdit-4.2/src/bsh/NameSpace.java

/**
        Get the top level namespace or this namespace if we are the top.
        Note: this method should probably return type bsh.This to be consistent
        with getThis();
*/
public This getGlobal(Interpreter declaringInterpreter) {
  if (parent != null)
    return parent.getGlobal(declaringInterpreter);
  else
    return getThis(declaringInterpreter);
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
                Get the top level namespace or this namespace if we are the top.
                Note: this method should probably return type bsh.This to be consistent
                with getThis();
        */
/**
                Get the parent namespace' This reference or this namespace' This
                reference if we are the top.
        */
public This  [[#variablec28fb00]](Interpreter declaringInterpreter) {
  if (parent != null)
    return parent. [[#variablec28fa80]](declaringInterpreter);
  else
    return getThis(declaringInterpreter);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#c28fb00]]
getSuper 
12[[#c28fb00]]
getGlobal 
21[[#c28fa80]]
getThis 
22[[#c28fa80]]
getGlobal