See: Description
Package | Description |
---|---|
org.openide |
Provides ErrorManager - the central place for logging and
reproting failures in NetBeans based system.
|
org.openide.util |
A set of
utility classes
covering a few general infrastructure points in the Open APIs.
|
org.openide.util.actions |
There are several types of standard actions
that should be used for many user interactions within NetBeans.
|
org.openide.util.datatransfer |
NetBeans uses special extensions to data transfer.
|
org.openide.util.spi |
This module contains general classes needed in NetBeans, extensions to basic JRE contepts, useful methods and other UtilitiesAPI classes.
The property url
is documented in Javadoc since 8.12 but the key string was not
added to the API. It is now, along with a
convenience method, which should be used in preference.
As a part of the effort to make NetBeans look better on HiDPI displays, the ImageUtilities class has now been completely updated to support scalable implementations of the java.awt.Icon interface, and to support loading of icons and images from SVG files. If an SVG file resource exists with the same base name as an existing bitmap icon, the SVG file will be loaded instead (e.g. "icon.svg" will be loaded instead of "icon.png"). SVG file resources can also be loaded explicitly.
To avoid bloating the core platform modules with large JAR libraries, the actual loading and parsing of SVG files is implemented in a separate, optional module, which is lazily loaded the first time that an SVG file is encountered for loading. A new interface SVGLoader has been added to serve as an SPI for said module to implement. Furthermore, the CachedHiDPIIcon helper class has been made public to assist in the implementation of this and other scalable Icon implementations.
It is now increasingly common for NetBeans to run on Windows, Linux, or MacOS machines with so-called "HiDPI" screens, aka. "retina" screens in the Apple world. These screens have about twice the physical pixel density of traditional screens, making it necessary to scale GUI graphics up by some amount, e.g. 150% or 200% (depending on OS and OS-level user settings), in order to remain readable. Since Java 9, this scaling is done automatically by AWT by means of a scaling default transform in each Component's Graphics2D instances. This makes text sharp on HiDPI screens, but leaves bitmap icons blurry.
This change introduces a new abstract class VectorIcon, which can be extended to create custom-painted Icon instances that will look sharp on HiDPI screens, regardless of scaling level. See VectorIcon's Javadoc for a discussion of appropriate use cases.
BooleanStateAction
deprecated in favour of Actions
API and @ActionState
annotation.
The BooleanStateAction base class was deprecated, as there's a programatic API in Actions and a declarative @ActionState annotation which fully supersede the deprecated class.
NetworkSettings.getAuthenticationPassword
added
The SPI NetworkSettings.ProxyCredentialsProvider allows NetBeans Platform users to provide proxy and network credentials, but the according API should also provide the password, not only the username.
If you are interested in logging from inside your module, or in writing your own log handler or in configuring the whole system, then best place to start is the NetBeans logging guide.
|
|
|
|
The sources for the module are in the Apache Git repositories or in the GitHub repositories.
Nothing.
Read more about the implementation in the answers to architecture questions.