Returns an array containing a one-point size instance of all fonts
available in this
GraphicsEnvironment
. Typical usage
would be to allow a user to select a particular font. Then, the
application can size the font and set various font attributes by
calling the
deriveFont
method on the choosen instance.
This method provides for the application the most precise control
over which Font
instance is used to render text.
If a font in this GraphicsEnvironment
has multiple
programmable variations, only one
instance of that Font
is returned in the array, and
other variations must be derived by the application.
If a font in this environment has multiple programmable variations,
such as Multiple-Master fonts, only one instance of that font is
returned in the Font
array. The other variations
must be derived by the application.
Returns:
an array of Font
objects
Since:
1.2
See Also:
GraphicsEnvironment.getAvailableFontFamilyNames()
,
Font
,
Font.deriveFont(int, float)
,
Font.getFontName()
,