Frames | No Frames |
Methods with parameter type org.apache.xalan.xsltc.Translet | |
DOM | This method is responsible for:
(1) building the DOMImpl tree
Parser _parser = new Parser();
DOMImpl _dom = new DOMImpl();
_parser.setDocumentHandler(_dom.getBuilder());
_parser.setDTDHandler(_dom.getBuilder());
_parser.parse(uri);
(2) giving the translet an early opportunity to extract anything from
the DOMImpl that it would like
translet.documentPrepass(_dom);
(3) setting the document URI:
_dom.setDocumentURI(uri);
|
Classes implementing org.apache.xalan.xsltc.Translet | |
class |
Methods with parameter type org.apache.xalan.xsltc.Translet | |
DTMAxisIterator | Utility function used to convert a w3c Node into an internal DOM iterator.
|
DTMAxisIterator | Utility function used to convert a w3c NodeList into a internal
DOM iterator.
|
Methods with parameter type org.apache.xalan.xsltc.Translet | |
DOM | This class should only be used as a DOMCache for the translet if the
URIResolver has been set.
|
Constructors with parameter type org.apache.xalan.xsltc.Translet | |
NodeSortRecordFactory.NodeSortRecordFactory(DOM dom, String className, Translet translet, order[] , type[] ) Creates a NodeSortRecord producing object. | |
NodeSortRecordFactory.NodeSortRecordFactory(DOM dom, String className, Translet translet, order[] , type[] , lang[] , caseOrder[] ) Creates a NodeSortRecord producing object. | |
Fields of type org.apache.xalan.xsltc.Translet | |
Translet |
Methods with parameter type org.apache.xalan.xsltc.Translet | |
NodeCounter | |
NodeCounter | MultipleNodeCounter.getDefaultNodeCounter(Translet translet, DOM document, DTMAxisIterator iterator) |
NodeCounter | |
DOM | Returns a document either by finding it in the cache or
downloading it and putting it in the cache.
|