Package com.icl.saxon.om
Class DocumentPool
java.lang.Object
com.icl.saxon.om.DocumentPool
An object representing the collection of documents handled during
a single transformation
- Author:
- Michael H. Kay
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionint
add
(DocumentInfo doc, String name) Add a document to the pool, and allocate a document numberGet the document with a given nameint
Get the document number of a document that is already in the pool.int
Get the number of documents in the pool
-
Constructor Details
-
DocumentPool
public DocumentPool()
-
-
Method Details
-
add
Add a document to the pool, and allocate a document number- Parameters:
doc
- The DocumentInfo for the document in questionname
- The name of the document. May be null, in the case of the principal source document or a result tree fragment. Used for the URI of a document loaded using the document() function.- Returns:
- the document number, unique within this document pool
-
getDocumentNumber
Get the document number of a document that is already in the pool. If the document is not already in the pool, it is added, and a document number is allocated. (This can happen when a Java application has built the document independently of the Controller. In this case, it is still necessary that all documents use the same NamePool, but we don't actually check this).- Returns:
- the document number
-
find
Get the document with a given name- Returns:
- the DocumentInfo with the given name if it exists, or null if it is not found.
-
getNumberOfDocuments
public int getNumberOfDocuments()Get the number of documents in the pool
-