NodeListCachepublic class NodeListCache extends Object implements SerializableThis class is used, via a pool managed on CoreDocumentImpl, in ParentNode to
improve performance of the NodeList accessors, getLength() and item(i). |
Fields Summary |
---|
private static final long | serialVersionUIDSerialization version. | int | fLengthCached node list length. | int | fChildIndexLast requested node index. | ChildNode | fChildLast requested node. | ParentNode | fOwnerOwner of this cache | NodeListCache | nextPointer to the next object on the list,
only meaningful when actully stored in the free list. |
Constructors Summary |
---|
NodeListCache(ParentNode owner)
fOwner = owner;
|
|