コード例 #1
0
ファイル: NameSpace.java プロジェクト: svn2github/BeanShell2
 /**
  * Clear all variables, methods, and imports from this namespace. If this namespace is the root,
  * it will be reset to the default imports.
  *
  * @see #loadDefaultImports()
  */
 public void clear() {
   variables = null;
   methods = null;
   importedClasses = null;
   importedPackages = null;
   importedCommands = null;
   importedObjects = null;
   if (parent == null) loadDefaultImports();
   classCache = null;
   names = null;
 }
コード例 #2
0
ファイル: NameSpace.java プロジェクト: svn2github/BeanShell2
  public void setParent(NameSpace parent) {
    this.parent = parent;

    // If we are disconnected from root we need to handle the def imports
    if (parent == null) loadDefaultImports();
  }