FileDocCategorySizeDatePackage
NodeListCache.javaAPI DocApache Xerces 3.0.11823Fri Sep 14 20:33:54 BST 2007org.apache.xerces.dom

NodeListCache

public class NodeListCache extends Object implements Serializable
This class is used, via a pool managed on CoreDocumentImpl, in ParentNode to improve performance of the NodeList accessors, getLength() and item(i).
xerces.internal
author
Arnaud Le Hors, IBM
version
$Id: NodeListCache.java 447266 2006-09-18 05:57:49Z mrglavas $

Fields Summary
private static final long
serialVersionUID
Serialization version.
int
fLength
Cached node list length.
int
fChildIndex
Last requested node index.
ChildNode
fChild
Last requested node.
ParentNode
fOwner
Owner of this cache
NodeListCache
next
Pointer to the next object on the list, only meaningful when actully stored in the free list.
Constructors Summary
NodeListCache(ParentNode owner)


      
        fOwner = owner;
    
Methods Summary