Interface | Description |
---|---|
org.openide.util.NbBundle.ClassLoaderFinder |
Useless.
|
Field | Description |
---|---|
org.openide.util.BaseUtilities.OS_DEC |
please use OS_TRU64 instead
|
org.openide.util.BaseUtilities.OS_UNIX_MASK |
Use
BaseUtilities.isUnix() instead. |
org.openide.util.BaseUtilities.OS_WINDOWS_MASK |
Use
BaseUtilities.isWindows() instead. |
org.openide.xml.EntityCatalog.PUBLIC_ID |
Better to register entities individually by layer as described in class documentation.
|
Method | Description |
---|---|
org.openide.util.NbBundle.ClassLoaderFinder.find() |
Useless.
|
org.openide.util.NbBundle.getLocalizedFile(String, String) |
Use the
nbresloc URL protocol instead. This method does a poor
job of handling resources such as /some.dir/res.txt or
/some/res.txt.sample. |
org.openide.util.NbBundle.setClassLoaderFinder(NbBundle.ClassLoaderFinder) |
Useless.
|
org.openide.util.RequestProcessor.createRequest(Runnable) |
Sharing of one singlethreaded
RequestProcessor
among different users and posting even blocking requests is inherently
deadlock-prone. See use cases. |
org.openide.util.RequestProcessor.postRequest(Runnable) |
Sharing of one singlethreaded
RequestProcessor
among different users and posting even blocking requests is inherently
deadlock-prone. See use cases. |
Constructor | Description |
---|---|
org.openide.util.io.FoldingIOException(Throwable) |
Better to create a new
IOException and use its Throwable.initCause(java.lang.Throwable) method. |
org.openide.util.NbBundle() |
There is no reason to instantiate or subclass this class.
All methods in it are static.
|
Built on April 24 2018. | Portions Copyright 1997-2018 Oracle. All rights reserved.