1 57 58 package com.sun.org.apache.xerces.internal.dom; 59 60 import java.io.Serializable ; 61 62 69 class NodeListCache implements Serializable { 70 71 int fLength = -1; 72 73 74 int fChildIndex = -1; 75 76 77 ChildNode fChild; 78 79 80 ParentNode fOwner; 81 82 84 NodeListCache next; 85 86 NodeListCache(ParentNode owner) { 87 fOwner = owner; 88 } 89 } 90 91 | Popular Tags |