* There is also a constructor for a DOM document, and another for a
* JAXP Transformer and Source.
* Multiple documents can be instantiated, and they will be processed
* in the order submitted.
*/
FOrayDocument document = null;
if (this.commandLineOptions.getInputMode()
== CommandLineOptions.INPUT_FO) {
document = new FOrayDocument(session, getInputSource(), null);
} else {
document = new FOrayDocument(session,
this.commandLineOptions.getXMLFile(),
this.commandLineOptions.getXSLFile());
}
/*