MCPcopy Create free account
hub / github.com/beanshell/beanshell / NameSpace

Method NameSpace

src/bsh/NameSpace.java:160–164  ·  view source on GitHub ↗

@param parent the parent namespace of this namespace. Child namespaces inherit all variables and methods of their parent and can (of course) override / shadow them.

( NameSpace parent, String name )

Source from the content-addressed store, hash-verified

158 override / shadow them.
159 */
160 public NameSpace( NameSpace parent, String name )
161 {
162 // Note: in this case parent must have a class manager.
163 this( parent, null, name );
164 }
165
166 public NameSpace( BshClassManager classManager, String name )
167 {

Callers

nothing calls this directly

Calls 4

setNameMethod · 0.95
setParentMethod · 0.95
setClassManagerMethod · 0.95
addListenerMethod · 0.45

Tested by

no test coverage detected