Class AWTFontRegistry
- java.lang.Object
-
- org.pentaho.reporting.libraries.fonts.awt.AWTFontRegistry
-
- All Implemented Interfaces:
FontRegistry
public class AWTFontRegistry extends Object implements FontRegistry
A very simple font registry wrapping around the AWT font classes.- Author:
- Thomas Morgner
-
-
Constructor Summary
Constructors Constructor Description AWTFontRegistry()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description FontMetricsFactorycreateMetricsFactory()Creates a new font metrics factory.String[]getAllRegisteredFamilies()FontFamilygetFontFamily(String name)Tries to find a font family with the given name, looking through all alternative font names if neccessary.String[]getRegisteredFamilies()FontCachegetSecondLevelCache()voidinitialize()protected static FontCacheinternalGetSecondLevelCache()
-
-
-
Method Detail
-
internalGetSecondLevelCache
protected static FontCache internalGetSecondLevelCache()
-
initialize
public void initialize()
- Specified by:
initializein interfaceFontRegistry
-
getSecondLevelCache
public FontCache getSecondLevelCache()
- Specified by:
getSecondLevelCachein interfaceFontRegistry
-
createMetricsFactory
public FontMetricsFactory createMetricsFactory()
Creates a new font metrics factory. That factory is specific to a certain font registry and is not required to handle font records from foreign font registries. A font metrics factory should never be used on its own. It should be embedded into and used by a FontStorage implementation.- Specified by:
createMetricsFactoryin interfaceFontRegistry- Returns:
-
getFontFamily
public FontFamily getFontFamily(String name)
Description copied from interface:FontRegistryTries to find a font family with the given name, looking through all alternative font names if neccessary.- Specified by:
getFontFamilyin interfaceFontRegistry- Returns:
- the font family or null, if there is no such family.
-
getRegisteredFamilies
public String[] getRegisteredFamilies()
- Specified by:
getRegisteredFamiliesin interfaceFontRegistry
-
getAllRegisteredFamilies
public String[] getAllRegisteredFamilies()
- Specified by:
getAllRegisteredFamiliesin interfaceFontRegistry
-
-