Class | Description |
---|---|
org.openide.execution.ScriptType |
Was used only in obsolete modules.
|
Method | Description |
---|---|
org.openide.execution.ExecutionEngine.createLibraryPath() |
There are generally no excuses to be using this method as part of a normal module;
its exact meaning is vague, and probably not what you want.
|
org.openide.execution.NbClassPath.createBootClassPath() |
Use the Java Platform API instead.
|
org.openide.execution.NbClassPath.createClassPath() |
There are generally no excuses to be using this method as part of a normal module;
its exact meaning is vague, and probably not what you want.
|
org.openide.execution.NbClassPath.createLibraryPath() |
There are generally no excuses to be using this method as part of a normal module;
its exact meaning is vague, and probably not what you want.
|
org.openide.execution.NbClassPath.toFile(FileObject) |
You should use
FileUtil.toFile(org.openide.filesystems.FileObject) instead. |
org.openide.execution.ScriptType.find(Class) |
Please use
Lookup instead. |
org.openide.execution.ScriptType.getDefault() |
Probably meaningless, find all available types and filter with
ScriptType.acceptFileObject(org.openide.filesystems.FileObject) instead. |
org.openide.execution.ScriptType.scriptTypes() |
Please use
Lookup instead. |
Constructor | Description |
---|---|
org.openide.execution.NbClassLoader() |
Misuses classpath.
|
Built on April 24 2018. | Portions Copyright 1997-2018 Oracle. All rights reserved.