| java.lang.Object org.netbeans.ModuleFactory
ModuleFactory | public class ModuleFactory (Code) | | Allows creation of custom modules. The factories are searched in
the default lookup (org.openide.util.Lookup.getDefault()). If there is one
it is used - if there are more of them arbitrary one is used (so please make
sure that there is only one present in the installation). If there is none
in the default lookup the system will use an instance of this class.
author: David Strupl |
Method Summary | |
public Module | create(File jar, Object history, boolean reloadable, boolean autoload, boolean eager, ModuleManager mgr, Events ev) This method creates a "standard" module. | public Module | createFixed(Manifest mani, Object history, ClassLoader loader, boolean autoload, boolean eager, ModuleManager mgr, Events ev) This method creates a "fixed" module. | public ClassLoader | getClasspathDelegateClassLoader(ModuleManager mgr, ClassLoader del) Allows specifying different parent classloader of all modules classloaders. | public boolean | removeBaseClassLoader() If this method returns true the parent the original classpath
classloader will be removed from the parent classloaders of a module classloader. |
removeBaseClassLoader | public boolean removeBaseClassLoader()(Code) | | If this method returns true the parent the original classpath
classloader will be removed from the parent classloaders of a module classloader.
|
|
|