|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object net.sf.saxon.Transform
public class Transform
This Transform class is the entry point to the Saxon XSLT Processor. This class is provided to control the processor from the command line.
The XSLT syntax supported conforms to the W3C XSLT 1.0 and XPath 1.0 recommendation. Only the transformation language is implemented (not the formatting objects). Saxon extensions are documented in the file extensions.html
Constructor Summary | |
---|---|
Transform()
|
Method Summary | |
---|---|
void |
doTransform(String[] args,
String command)
Support method for main program. |
static Object |
loadDocuments(String sourceFileName,
boolean useURLs,
Configuration config,
boolean useSAXSource)
Load a document, or all the documents in a directory, given a filename or URL |
static void |
main(String[] args)
Main program, can be used directly from the command line. |
static long |
now()
Get current time in milliseconds |
List |
preprocess(List sources)
Preprocess the list of sources. |
void |
processDirectory(List sources,
Templates sheet,
File outputDir,
ArrayList parameterList,
String initialTemplate,
String initialMode)
Process each file in the source directory using the same supplied stylesheet |
void |
processDirectoryAssoc(List sources,
File outputDir,
ArrayList parameterList,
String initialMode)
Process each file in the source directory using its own associated stylesheet |
void |
processFile(Source source,
Templates sheet,
File outputFile,
ArrayList parameterList,
String initialTemplate,
String initialMode)
Process a single file using a supplied stylesheet |
void |
processFileAssoc(Source sourceInput,
String localName,
File outputFile,
ArrayList parameterList,
String initialMode)
Process a single source file using its associated stylesheet(s) |
void |
setFactoryConfiguration(boolean schemaAware,
String className)
Set the configuration in the TransformerFactory. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Transform()
Method Detail |
---|
public static void main(String[] args) throws Exception
The format is:
java net.sf.saxon.Transform [options] source-file style-file >output-file
followed by any number of parameters in the form {keyword=value}... which can be referenced from within the stylesheet.
This program applies the XSL style sheet in style-file to the source XML document in source-file.
args
- List of arguments supplied on operating system command line
Exception
- Indicates that a compile-time or
run-time error occurredpublic void setFactoryConfiguration(boolean schemaAware, String className) throws RuntimeException
schemaAware
- True if the transformation is to be schema-awareclassName
- Name of the schema-aware Configuration class to be loaded. Designed for use by .NET;
can normally be null.
RuntimeException
public void doTransform(String[] args, String command)
args
- the command-line argumentscommand
- the form of the command as written by the user, to be used in error messagespublic List preprocess(List sources) throws XPathException
sources
- the list of Source objects
XPathException
public static Object loadDocuments(String sourceFileName, boolean useURLs, Configuration config, boolean useSAXSource) throws TransformerException
sourceFileName
- the name of the source file or directoryuseURLs
- true if the filename argument is to be treated as a URIconfig
- the Saxon configurationuseSAXSource
- true if the method should use a SAXSource rather than a StreamSource
TransformerException
public void processDirectoryAssoc(List sources, File outputDir, ArrayList parameterList, String initialMode) throws Exception
sources
- The sources in the directory to be processedoutputDir
- The directory in which output files are to be
createdparameterList
- List of parameters to be supplied to each
transformationinitialMode
- Initial mode for executing each
transformation
Exception
- when any error occurs during a transformationpublic void processFileAssoc(Source sourceInput, String localName, File outputFile, ArrayList parameterList, String initialMode) throws TransformerException
sourceInput
- Identifies the source file to be transformedlocalName
- The local name of the file within the
directory, excluding the file type suffixoutputFile
- The output file to contain the results of the
transformationparameterList
- List of parameters to be supplied to the
transformationinitialMode
- Initial mode for executing the transformation
XPathException
- If the transformation fails
TransformerException
public static long now()
public void processDirectory(List sources, Templates sheet, File outputDir, ArrayList parameterList, String initialTemplate, String initialMode) throws TransformerException
sources
- The sources in the directory to be processedsheet
- The Templates object identifying the stylesheetoutputDir
- The directory in which output files are to be
createdparameterList
- List of parameters to be supplied to each
transformationinitialTemplate
- Initial template for executing each
transformationinitialMode
- Initial mode for executing each
transformation
XPathException
- when any error occurs during a
transformation
TransformerException
public void processFile(Source source, Templates sheet, File outputFile, ArrayList parameterList, String initialTemplate, String initialMode) throws TransformerException
source
- The source XML document to be transformed (maybe null if an initial template
is specified)sheet
- The Templates object identifying the stylesheetoutputFile
- The output file to contain the results of the
transformationparameterList
- List of parameters to be supplied to the
transformationinitialTemplate
- Initial template for executing each
transformationinitialMode
- Initial mode for executing the transformation
XPathException
- If the transformation fails
TransformerException
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |