FileDocCategorySizeDatePackage
NodeListCache.javaAPI DocJava SE 5 API3543Fri Aug 26 14:55:44 BST 2005com.sun.org.apache.xerces.internal.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).
author
Arnaud Le Hors, IBM
version
$Id: NodeListCache.java,v 1.4 2002/08/09 15:18:14 neilg Exp $

Fields Summary
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