MCPcopy Index your code
hub / github.com/beanshell/beanshell / getClassManager

Method getClassManager

src/bsh/NameSpace.java:484–495  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

482 }
483
484 public BshClassManager getClassManager()
485 {
486 if ( classManager != null )
487 return classManager;
488 if ( parent != null && parent != JAVACODE )
489 return parent.getClassManager();
490
491 classManager = BshClassManager.createClassManager( null/*interp*/ );
492
493 //Interpreter.debug("No class manager namespace:" +this);
494 return classManager;
495 }
496
497 void setClassManager( BshClassManager classManager ) {
498 this.classManager = classManager;

Callers 13

getImportedMethodMethod · 0.95
getImportedClassImplMethod · 0.95
classForNameMethod · 0.95
doSuperImportMethod · 0.95
invokeMethod · 0.45
invokeMethodMethod · 0.45
invokeLocalMethodMethod · 0.45
getTypeDescriptorMethod · 0.45
getTypeMethod · 0.45
invokeObjectMethodMethod · 0.45
invokeCompiledCommandMethod · 0.45
getCommandMethod · 0.45

Calls 1

createClassManagerMethod · 0.95

Tested by

no test coverage detected