Xalan-Java implements the W3C Recommendation 16 November 1999 XSL Transformations (XSLT) Version 1.0.
XLST is a stylesheet language for transforming XML documents into other XML documents, HTML documents, other document types, or text.
See: Description
Transformations API for XML (TrAX) |
---|
Java API for XML Parsing |
---|
Xalan Core |
---|
XPath | |
---|---|
org.apache.xpath |
Implementation of XPath; for the most part, only classes meant for public use are found at this root level of the XPath packages. |
org.apache.xpath.axes |
Implementation of XPath LocationPath support -- primary classes are LocPathIterator and UnionPathIterator. |
org.apache.xpath.compiler |
Implements an XPath parser which produces an OpMap, and a so-called Compiler which produces an expression tree for fast evaluation. |
org.apache.xpath.domapi |
Implements DOM Level 3 XPath API |
org.apache.xpath.functions |
Implements XPath functions -- each function is derived from Function, FunctionOneArg, Function2Args, etc, with number-of-arguments checking being applied mainly at compile time -- this package only implements XPath functions, XSLT functions are found in the "templates" package. |
org.apache.xpath.jaxp | |
org.apache.xpath.objects |
Implementation of XPath polymorphic type objects -- this package will grow as XPath objects are expanded to support XML Schema data types. |
org.apache.xpath.operations |
Support for XPath operations, such as +, -, string(), etc. |
org.apache.xpath.patterns |
Implementation of XPath nodeTest support, and XSLT pattern matching support. |
org.apache.xpath.res |
Contains strings for XPath support that require internationalization. |
Document Table Model (DTM) | |
---|---|
org.apache.xml.dtm | |
org.apache.xml.dtm.ref | |
org.apache.xml.dtm.ref.dom2dtm | |
org.apache.xml.dtm.ref.sax2dtm |
Utilities | |
---|---|
org.apache.xml.utils |
Implementation of Xalan utility classes. |
org.apache.xml.utils.res |
Xalan Other |
---|
Xalan Extensions | |
---|---|
org.apache.xalan.lib |
Extension elements and functions shipped with Xalan-Java, including EXSLT functions. We are adding extensions to this package. |
org.apache.xalan.lib.sql |
Provides extension functions for connecting to a JDBC data source, executing a query, and working incrementally through a "streamable" result set. |
Serializers | |
---|---|
org.apache.xml.serializer |
Processes SAX events into streams. The {@link org.apache.xml.serializer.SerializerFactory} is used to create a {@link org.apache.xml.serializer.Serializer} from a set of output properties (see {@link javax.xml.transform.OutputKeys}). {@link org.apache.xml.serializer.ToStream} acts as the main baseclass for the Xalan serializer implementations. |
org.apache.xml.serializer.utils |
SAX 2 |
---|
DOM 2 |
---|
Other Packages | |
---|---|
org.apache.xalan | |
org.apache.xalan.client |
Implementation of Xalan applet. |
org.apache.xalan.extensions |
Implementation of Xalan Extension Mechanism. |
org.apache.xalan.processor |
Parses an XSLT stylesheet document (which may include and import other stylesheet documents) and produces a StylesheetRoot (a TRaX Templates object). StylesheetProcessor implements the TRaX {@link javax.xml.transform.TransformerFactory} interface, as well as the {@link javax.xml.transform.sax.SAXTransformerFactory} interface. |
org.apache.xalan.res |
Contains strings that require internationalization. |
org.apache.xalan.serialize | |
org.apache.xalan.templates |
Implements the {@link javax.xml.transform.Templates} interface, and defines a set of classes that represent an XSLT stylesheet. {@link org.apache.xalan.templates.StylesheetRoot} implements the {@link javax.xml.transform.Templates} interface, and extends {@link org.apache.xalan.templates.StylesheetComposed}, which is a {@link org.apache.xalan.templates.Stylesheet} composed of itself and its included Stylesheet objects. |
org.apache.xalan.trace |
Implementation of Xalan Trace events, for use by a debugger. |
org.apache.xalan.transformer |
In charge of run-time transformations and the production of result trees. {@link org.apache.xalan.transformer.TransformerImpl} implements the {@link javax.xml.transform.Transformer} interface, and is the core representation of the transformation execution. For each node in the XML source, TransformerImpl uses the StylesheetRoot and underlying XSLT schema to determine which template to apply: one of the templates in the StylesheetRoot, a default template rule as specified in the XSLT spec, or none. The Transformer works with {@link org.apache.xml.serializer.SerializationHandler} to forward the SAX-like events produced by the transformation to the appropriate output ContentHandler. To the degree possible, the parsing of the XML source and application of the Templates object to that source are performed concurrently in separate threads. |
org.apache.xalan.xslt |
Implementation of Xalan command-line interface. |
org.apache.xml.res |
Xalan-Java implements the W3C Recommendation 16 November 1999 XSL Transformations (XSLT) Version 1.0.
XLST is a stylesheet language for transforming XML documents into other XML documents, HTML documents, other document types, or text. The language includes the XSL Transformation vocabulary and XPath, a language for addressing parts of an XML document. An XSL stylesheet describes how to transform the tree of nodes in the XML input into another tree of nodes.