FileDocCategorySizeDatePackage
DOMCache.javaAPI DocJava SE 6 API1712Tue Jun 10 00:22:26 BST 2008com.sun.org.apache.xalan.internal.xsltc

DOMCache

public interface DOMCache
author
Morten Jorgensen

Fields Summary
Constructors Summary
Methods Summary
public com.sun.org.apache.xalan.internal.xsltc.DOMretrieveDocument(java.lang.String baseURI, java.lang.String href, com.sun.org.apache.xalan.internal.xsltc.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);

param
baseURI The base URI used by the document call.
param
href The href argument passed to the document function.
param
translet A reference to the translet requesting the document