Uses of Interface
javax.xml.transform.Templates
| Package | Description |
|---|---|
| javax.xml.transform | |
| javax.xml.transform.sax | |
| 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).
|
| org.apache.xalan.templates |
Implements the
Templates interface,
and defines a set of classes that represent an XSLT stylesheet. |
| org.apache.xalan.transformer |
In charge of run-time transformations and the production of result trees.
|
-
Uses of Templates in javax.xml.transform
Methods in javax.xml.transform that return Templates Modifier and Type Method Description abstract TemplatesTransformerFactory. newTemplates(Source source)Process the Source into a Templates object, which is a a compiled representation of the source. -
Uses of Templates in javax.xml.transform.sax
Methods in javax.xml.transform.sax that return Templates Modifier and Type Method Description TemplatesTemplatesHandler. getTemplates()When a TemplatesHandler object is used as a ContentHandler for the parsing of transformation instructions, it creates a Templates object, which the caller can get once the SAX events have been completed.Methods in javax.xml.transform.sax with parameters of type Templates Modifier and Type Method Description abstract TransformerHandlerSAXTransformerFactory. newTransformerHandler(Templates templates)Get a TransformerHandler object that can process SAX ContentHandler events into a Result, based on the Templates argument.abstract XMLFilterSAXTransformerFactory. newXMLFilter(Templates templates)Create an XMLFilter, based on the Templates argument.. -
Uses of Templates in org.apache.xalan.processor
Methods in org.apache.xalan.processor that return Templates Modifier and Type Method Description TemplatesStylesheetHandler. getTemplates()When this object is used as a ContentHandler or ContentHandler, it will create a Templates object, which the caller can get once the SAX events have been completed.TemplatesTransformerFactoryImpl. newTemplates(Source source)Process the source into a Templates object, which is likely a compiled representation of the source.TemplatesTransformerFactoryImpl. processFromNode(Node node)Methods in org.apache.xalan.processor with parameters of type Templates Modifier and Type Method Description TransformerHandlerTransformerFactoryImpl. newTransformerHandler(Templates templates)Get a TransformerHandler object that can process SAX ContentHandler events into a Result, based on the Templates argument.XMLFilterTransformerFactoryImpl. newXMLFilter(Templates templates)Create an XMLFilter that uses the given source as the transformation instructions. -
Uses of Templates in org.apache.xalan.templates
Classes in org.apache.xalan.templates that implement Templates Modifier and Type Class Description classStylesheetRootThis class represents the root object of the stylesheet tree. -
Uses of Templates in org.apache.xalan.transformer
Constructors in org.apache.xalan.transformer with parameters of type Templates Constructor Description TrAXFilter(Templates templates)Construct an empty XML filter, with no parent.