org.pentaho.reporting.libraries.fonts.awt
Class AWTFontRegistry

java.lang.Object
  extended by org.pentaho.reporting.libraries.fonts.awt.AWTFontRegistry
All Implemented Interfaces:
FontRegistry

public class AWTFontRegistry
extends java.lang.Object
implements FontRegistry

A very simple font registry wrapping around the AWT font classes.

Author:
Thomas Morgner

Constructor Summary
AWTFontRegistry()
           
 
Method Summary
 FontMetricsFactory createMetricsFactory()
          Creates a new font metrics factory.
 java.lang.String[] getAllRegisteredFamilies()
           
 FontFamily getFontFamily(java.lang.String name)
          Tries to find a font family with the given name, looking through all alternative font names if neccessary.
 java.lang.String[] getRegisteredFamilies()
           
 FontCache getSecondLevelCache()
           
 void initialize()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AWTFontRegistry

public AWTFontRegistry()
Method Detail

initialize

public void initialize()
Specified by:
initialize in interface FontRegistry

getSecondLevelCache

public FontCache getSecondLevelCache()
Specified by:
getSecondLevelCache in interface FontRegistry

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:
createMetricsFactory in interface FontRegistry
Returns:

getFontFamily

public FontFamily getFontFamily(java.lang.String name)
Description copied from interface: FontRegistry
Tries to find a font family with the given name, looking through all alternative font names if neccessary.

Specified by:
getFontFamily in interface FontRegistry
Returns:
the font family or null, if there is no such family.

getRegisteredFamilies

public java.lang.String[] getRegisteredFamilies()
Specified by:
getRegisteredFamilies in interface FontRegistry

getAllRegisteredFamilies

public java.lang.String[] getAllRegisteredFamilies()
Specified by:
getAllRegisteredFamilies in interface FontRegistry