Create a new instance of BatchExporter for use with a particular export template. @param exportTemplateFilename The path to the export template. @param uiDelegate The object through which to report any issues to the user.
(String exportTemplateFilename, UIDelegate uiDelegate)
| 81 | * @param uiDelegate The object through which to report any issues to the user. |
| 82 | */ |
| 83 | BatchExporter(String exportTemplateFilename, UIDelegate uiDelegate) |
| 84 | { |
| 85 | this.exportTemplateFilename = exportTemplateFilename; |
| 86 | this.uiDelegate = uiDelegate; |
| 87 | |
| 88 | isPdf = ExportUtilities.isPdfTemplate(exportTemplateFilename); |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * Export a character sheet for the character to the output file using the |
nothing calls this directly
no test coverage detected