Package org.apache.fop.fonts
Interface FontCacheManager
-
public interface FontCacheManagerFop cache (currently only used for font info caching)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete()Deletes the font cache from the file-system.FontCacheload()Loads the font cache into memory from the given file.voidsave()Serializes the font cache to file.voidsetCacheFile(java.net.URI fontCacheURI)Sets the font cache file given the URI pointing to the file.
-
-
-
Method Detail
-
setCacheFile
void setCacheFile(java.net.URI fontCacheURI)
Sets the font cache file given the URI pointing to the file.- Parameters:
fontCacheURI- the font cache URI
-
load
FontCache load()
Loads the font cache into memory from the given file.- Returns:
- the de-serialized font cache
-
save
void save() throws FOPException
Serializes the font cache to file.- Throws:
FOPException- if an error occurs serializing the font cache
-
delete
void delete() throws FOPExceptionDeletes the font cache from the file-system.- Throws:
FOPException- if an error occurs deleting the font cache
-
-