Interface IFDocumentHandlerConfigurator
-
- All Known Implementing Classes:
AFPRendererConfigurator,BitmapRendererConfigurator,DefaultRendererConfigurator,Java2DRendererConfigurator,PCLRendererConfigurator,PDFRendererConfigurator,PrintRendererConfigurator,PSRendererConfigurator,TIFFRendererConfigurator,TXTRendererConfigurator
public interface IFDocumentHandlerConfiguratorThis interface is implemented by classes that configure anIFDocumentHandlerinstance.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidconfigure(IFDocumentHandler documentHandler)Configures a intermediate format document handler.voidsetupFontInfo(java.lang.String mimeType, FontInfo fontInfo)Sets up theFontInfoobject for the IFDocumentHandler.
-
-
-
Method Detail
-
configure
void configure(IFDocumentHandler documentHandler) throws FOPException
Configures a intermediate format document handler.- Parameters:
documentHandler- the document handler instance- Throws:
FOPException- if an error occurs while configuring the object
-
setupFontInfo
void setupFontInfo(java.lang.String mimeType, FontInfo fontInfo) throws FOPExceptionSets up theFontInfoobject for the IFDocumentHandler.- Parameters:
mimeType- the MIME type of the document handlerfontInfo- the font info object to set up- Throws:
FOPException- if an error occurs while configuring the object
-
-