| Package | Description | 
|---|---|
| org.apache.xalan.xsltc | |
| org.apache.xalan.xsltc.dom | |
| org.apache.xalan.xsltc.runtime | |
| org.apache.xalan.xsltc.trax | 
| Modifier and Type | Method and Description | 
|---|---|
| DOM | DOMCache. retrieveDocument(String baseURI,
                String href,
                Translet translet)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); | 
| Modifier and Type | Field and Description | 
|---|---|
| Translet | NodeCounter. _translet | 
| Modifier and Type | Method and Description | 
|---|---|
| static NodeCounter | SingleNodeCounter. getDefaultNodeCounter(Translet translet,
                     DOM document,
                     DTMAxisIterator iterator) | 
| static NodeCounter | MultipleNodeCounter. getDefaultNodeCounter(Translet translet,
                     DOM document,
                     DTMAxisIterator iterator) | 
| static NodeCounter | AnyNodeCounter. getDefaultNodeCounter(Translet translet,
                     DOM document,
                     DTMAxisIterator iterator) | 
| DOM | DocumentCache. retrieveDocument(String baseURI,
                String href,
                Translet trs)Returns a document either by finding it in the cache or
 downloading it and putting it in the cache. | 
| Constructor and Description | 
|---|
| AnyNodeCounter(Translet translet,
              DOM document,
              DTMAxisIterator iterator) | 
| MultipleNodeCounter(Translet translet,
                   DOM document,
                   DTMAxisIterator iterator) | 
| NodeCounter(Translet translet,
           DOM document,
           DTMAxisIterator iterator) | 
| NodeSortRecordFactory(DOM dom,
                     String className,
                     Translet translet,
                     String[] order,
                     String[] type)Deprecated. 
 This constructor is no longer used in generated code.  It
             exists only for backwards compatibility. | 
| NodeSortRecordFactory(DOM dom,
                     String className,
                     Translet translet,
                     String[] order,
                     String[] type,
                     String[] lang,
                     String[] caseOrder)Creates a NodeSortRecord producing object. | 
| SingleNodeCounter(Translet translet,
                 DOM document,
                 DTMAxisIterator iterator) | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | AbstractTranslet | 
| Modifier and Type | Method and Description | 
|---|---|
| static DTMAxisIterator | BasisLibrary. node2Iterator(Node node,
             Translet translet,
             DOM dom)Utility function used to convert a w3c Node into an internal DOM iterator. | 
| static DTMAxisIterator | BasisLibrary. nodeList2Iterator(NodeList nodeList,
                 Translet translet,
                 DOM dom)Utility function used to convert a w3c NodeList into a internal
 DOM iterator. | 
| Modifier and Type | Method and Description | 
|---|---|
| DOM | TransformerImpl. retrieveDocument(String baseURI,
                String href,
                Translet translet)This class should only be used as a DOMCache for the translet if the
 URIResolver has been set. | 
| Constructor and Description | 
|---|
| TransformerImpl(Translet translet,
               Properties outputProperties,
               int indentNumber,
               TransformerFactoryImpl tfactory) | 
Copyright © 2018 JBoss by Red Hat. All rights reserved.