|
||||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | |||||||||
See:
Description
| Interface Summary | |
| XSLTProcessor | Deprecated. This compatibility layer will be removed in later releases. |
| Class Summary | |
| Stylesheet | Deprecated. This compatibility layer will be removed in later releases. |
| StylesheetHandler | Deprecated. This compatibility layer will be removed in later releases. |
| StylesheetRoot | Deprecated. This compatibility layer will be removed in later releases. |
| StylesheetSpec | Deprecated. This compatibility layer will be removed in later releases. |
| XSLProcessorContext | Deprecated. This compatibility layer will be removed in later releases. |
| XSLTEngineImpl | Deprecated. This compatibility layer will be removed in later releases. |
| XSLTInputSource | Deprecated. This compatibility layer will be removed in later releases. |
| XSLTProcessorFactory | Deprecated. This compatibility layer will be removed in later releases. |
| XSLTResultTarget | Deprecated. This compatibility layer will be removed in later releases. |
| Exception Summary | |
| XSLProcessorException | Deprecated. This compatibility layer will be removed in later releases. |
The main Xalan-Java 1 compatability package -- facilities for setting up and performing XSL transformations.
Use one of the XSLTProcessorFactory static getProcessor methods to
instantiate an XSLTProcessor. The XSLTProcessor interface defines the
XSLT processor API. You should never need to call the underlying implementation
(XSLTEngineImpl) directly.
Instantiate XSLTInputSource objects for the XML input and the XSL
stylesheet, and an 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
StylesheetRoot object with its own process method.
|
||||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | |||||||||