MCPcopy Create free account
hub / github.com/PCGen/pcgen / BatchExporter

Method BatchExporter

code/src/java/pcgen/system/BatchExporter.java:83–89  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

isPdfTemplateMethod · 0.95

Tested by

no test coverage detected