Begin changeXSLReportProcessor class

The XSLReportProcessor class enables you to create a document or report by transforming and formatting your XML source data using an XSL stylesheet. Use this class to create the report by using an XSL stylesheet that contains XSL formatting objects (FOs), which must conform to the XSL specification. You then use a Context class to convert the report data to a specified output data stream format.

The XSLReportProcessor class allows you to:

For more information about XML and XSL, see the XML topic in the Information Center.

The following example shows how you can use the JSPReportProcessor and the PDFContext classes to generate a report:

Example: Using XSLReportProcessor with PCLContextEnd change