(File xsltFile)
| 114 | } |
| 115 | |
| 116 | private static StreamSource createXsltStreamSource(File xsltFile) throws FileNotFoundException |
| 117 | { |
| 118 | if (xsltFile == null) |
| 119 | { |
| 120 | return null; |
| 121 | } |
| 122 | if (!xsltFile.exists()) |
| 123 | { |
| 124 | throw new FileNotFoundException("xsl file " + xsltFile.getAbsolutePath() + " not found "); |
| 125 | } |
| 126 | return new StreamSource(xsltFile); |
| 127 | } |
| 128 | |
| 129 | public static FopFactory getFactory() |
| 130 | { |