|
|||||||||
| Home >> All >> org >> apache >> xalan >> xslt >> [ client overview ] | PREV PACKAGE NEXT PACKAGE | ||||||||
Package org.apache.xalan.xslt.client
The main Xalan-Java package -- facilities for setting up and performing XSL transformations.
See:
Description
| Class Summary | |
| XSLTProcessorApplet | Provides applet host for the XSLT processor. |
Package org.apache.xalan.xslt.client Description
The main Xalan-Java package -- facilities for setting up and performing XSL transformations.
Use one of the org.apache.xalan.xslt.XSLTProcessorFactory static getProcessor methods to instantiate an org.apache.xalan.xslt.XSLTProcessor. The XSLTProcessor interface defines the XSLT processor API. You should never need to call the underlying implementation (org.apache.xalan.xslt.XSLTEngineImpl) directly.
Instantiate org.apache.xalan.xslt.XSLTInputSource objects for the XML input and the XSL stylesheet, and an org.apache.xalan.xslt.XSLTResultTarget object for the transformation output. You may construct these objects with a variety of containers/formats, including files or URLs, character streams,byte streams, SAX input streams or document handlers, and a DOM tree.
As a general rule, use the XSLTProcessor process method to perform a transformation, thereby filling the XSLTResultTarget object. For repeated transformations, to gather information from the stylesheet before you perform the transformation, or to set up the processor to function as a SAX document handler, use the XSLTProcessor processStylesheet method to compile the XSL stylesheet, which returns a org.apache.xalan.xslt.StylesheetRoot object with its own process method.
|
|||||||||
| Home >> All >> org >> apache >> xalan >> xslt >> [ client overview ] | PREV PACKAGE NEXT PACKAGE | ||||||||