Java utilities for eXstensible Stylesheet Language Transformations (XSLT).
xslt.Pipeline connects a sequence of transforms into a chain, with the output from one step being the input to the next. Each step is one of: javax.xml.transform.Source, javax.xml.transform.Templates, org.xml.sax.XMLFilter. Output from the final step can be passed to one of: java.io.OutputStream, org.xml.sax.ContentHandler, javax.xml.transform.Result. The transform() methods takes a javax.xml.transform.Source object as input and runs all the steps in the pipeline. The design allows one pipeline to be connected to another.
xslt.TeeFilter is an XMLFilter that will copy its input to a org.xml.sax.ContentHandler object as well as passing it through to the next step. It can be used to branch from one pipeline into another.
xslt.PipelineBuilder constructs a Pipeline instance from an XML parameter file.