Interface and Description |
---|
org.openide.util.NbBundle.ClassLoaderFinder
Useless.
|
Field and 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 and Description |
---|
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.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.getLocalizedFile(String, String, Locale)
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.getLocalizedFile(String, String, Locale, ClassLoader)
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.RequestProcessor.postRequest(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, int)
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, int, int)
Sharing of one singlethreaded
RequestProcessor
among different users and posting even blocking requests is inherently
deadlock-prone. See use cases . |
org.openide.util.NbBundle.setClassLoaderFinder(NbBundle.ClassLoaderFinder)
Useless.
|
Constructor and 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.
|